Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclFriend.h67 friend class CXXRecordDecl::friend_iterator;
173 class CXXRecordDecl::friend_iterator {
177 explicit friend_iterator(FriendDecl *Ptr) : Ptr(Ptr) {} in friend_iterator() function
179 friend_iterator() {} in friend_iterator() function
189 friend_iterator &operator++() {
195 friend_iterator operator++(int) {
196 friend_iterator tmp = *this;
201 bool operator==(const friend_iterator &Other) const {
205 bool operator!=(const friend_iterator &Other) const {
209 friend_iterator &operator+=(difference_type N) {
[all …]
DDeclCXX.h790 class friend_iterator; variable
791 typedef llvm::iterator_range<friend_iterator> friend_range;
794 friend_iterator friend_begin() const;
795 friend_iterator friend_end() const;
/external/clang/lib/Sema/
DSema.cpp611 for (CXXRecordDecl::friend_iterator I = RD->friend_begin(), in IsRecordFullyDefined()