Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclFriend.h62 friend class CXXRecordDecl::friend_iterator;
186 class CXXRecordDecl::friend_iterator {
191 explicit friend_iterator(FriendDecl *Ptr) : Ptr(Ptr) {} in friend_iterator() function
194 friend_iterator() = default;
204 friend_iterator &operator++() {
210 friend_iterator operator++(int) {
211 friend_iterator tmp = *this;
216 bool operator==(const friend_iterator &Other) const {
220 bool operator!=(const friend_iterator &Other) const {
224 friend_iterator &operator+=(difference_type N) {
[all …]
H A DDeclCXX.h693 class friend_iterator; variable
694 using friend_range = llvm::iterator_range<friend_iterator>;
697 friend_iterator friend_begin() const;
698 friend_iterator friend_end() const;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTStructuralEquivalence.cpp1762 CXXRecordDecl::friend_iterator Friend2 = D2CXX->friend_begin(), in IsStructurallyEquivalent()
1764 for (CXXRecordDecl::friend_iterator Friend1 = D1CXX->friend_begin(), in IsStructurallyEquivalent()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp1056 for (CXXRecordDecl::friend_iterator I = RD->friend_begin(), in IsRecordFullyDefined()