Home
last modified time | relevance | path

Searched refs:friend_iterator (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclFriend.h62 friend class CXXRecordDecl::friend_iterator;
186 class CXXRecordDecl::friend_iterator {
194 friend_iterator() = default;
204 friend_iterator &operator++() {
210 friend_iterator operator++(int) {
211 friend_iterator tmp = *this;
224 friend_iterator &operator+=(difference_type N) {
231 friend_iterator operator+(difference_type N) const {
232 friend_iterator tmp = *this;
239 return friend_iterator(getFirstFriend()); in friend_begin()
[all …]
H A DDeclCXX.h692 class friend_iterator; variable
693 using friend_range = llvm::iterator_range<friend_iterator>;
696 friend_iterator friend_begin() const;
697 friend_iterator friend_end() const;
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTStructuralEquivalence.cpp1728 CXXRecordDecl::friend_iterator Friend2 = D2CXX->friend_begin(), in IsStructurallyEquivalent()
1730 for (CXXRecordDecl::friend_iterator Friend1 = D1CXX->friend_begin(), in IsStructurallyEquivalent()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp996 for (CXXRecordDecl::friend_iterator I = RD->friend_begin(), in IsRecordFullyDefined()