Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclFriend.h73 friend class CXXRecordDecl::friend_iterator;
177 class CXXRecordDecl::friend_iterator {
181 explicit friend_iterator(FriendDecl *Ptr) : Ptr(Ptr) {} in friend_iterator() function
183 friend_iterator() {} in friend_iterator() function
193 friend_iterator &operator++() {
199 friend_iterator operator++(int) {
200 friend_iterator tmp = *this;
205 bool operator==(const friend_iterator &Other) const {
209 bool operator!=(const friend_iterator &Other) const {
213 friend_iterator &operator+=(difference_type N) {
[all …]
DDeclCXX.h785 class friend_iterator; variable
786 typedef llvm::iterator_range<friend_iterator> friend_range;
789 friend_iterator friend_begin() const;
790 friend_iterator friend_end() const;
/external/clang/lib/Sema/
DSema.cpp620 for (CXXRecordDecl::friend_iterator I = RD->friend_begin(), in IsRecordFullyDefined()