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;
198 class CXXRecordDecl::friend_iterator {
203 explicit friend_iterator(FriendDecl *Ptr) : Ptr(Ptr) {} in friend_iterator() function
206 friend_iterator() = default;
216 friend_iterator &operator++() {
222 friend_iterator operator++(int) {
223 friend_iterator tmp = *this;
228 bool operator==(const friend_iterator &Other) const {
232 bool operator!=(const friend_iterator &Other) const {
236 friend_iterator &operator+=(difference_type N) {
[all …]
H A DDeclCXX.h691 class friend_iterator; variable
692 using friend_range = llvm::iterator_range<friend_iterator>;
695 friend_iterator friend_begin() const;
696 friend_iterator friend_end() const;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTStructuralEquivalence.cpp1953 CXXRecordDecl::friend_iterator Friend2 = D2CXX->friend_begin(), in IsStructurallyEquivalent()
1955 for (CXXRecordDecl::friend_iterator Friend1 = D1CXX->friend_begin(), in IsStructurallyEquivalent()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp1129 for (CXXRecordDecl::friend_iterator I = RD->friend_begin(), in IsRecordFullyDefined()