Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclFriend.h63 friend class CXXRecordDecl::friend_iterator;
187 class CXXRecordDecl::friend_iterator {
192 explicit friend_iterator(FriendDecl *Ptr) : Ptr(Ptr) {} in friend_iterator() function
195 friend_iterator() = default;
205 friend_iterator &operator++() {
211 friend_iterator operator++(int) {
212 friend_iterator tmp = *this;
217 bool operator==(const friend_iterator &Other) const {
221 bool operator!=(const friend_iterator &Other) const {
225 friend_iterator &operator+=(difference_type N) {
[all …]
H A DDeclCXX.h662 class friend_iterator; variable
663 using friend_range = llvm::iterator_range<friend_iterator>;
666 friend_iterator friend_begin() const;
667 friend_iterator friend_end() const;
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTStructuralEquivalence.cpp1499 CXXRecordDecl::friend_iterator Friend2 = D2CXX->friend_begin(), in IsStructurallyEquivalent()
1501 for (CXXRecordDecl::friend_iterator Friend1 = D1CXX->friend_begin(), in IsStructurallyEquivalent()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSema.cpp901 for (CXXRecordDecl::friend_iterator I = RD->friend_begin(), in IsRecordFullyDefined()