Home | History | Annotate | Download | only in AST

Lines Matching refs:shadow_iterator

2920   class shadow_iterator {
2931 shadow_iterator() : Current(nullptr) { }
2932 explicit shadow_iterator(UsingShadowDecl *C) : Current(C) { }
2937 shadow_iterator& operator++() {
2942 shadow_iterator operator++(int) {
2943 shadow_iterator tmp(*this);
2948 friend bool operator==(shadow_iteratorshadow_iterator y) {
2951 friend bool operator!=(shadow_iterator x, shadow_iterator y) {
2956 typedef llvm::iterator_range<shadow_iterator> shadow_range;
2961 shadow_iterator shadow_begin() const {
2962 return shadow_iterator(FirstUsingShadow.getPointer());
2964 shadow_iterator shadow_end() const { return shadow_iterator(); }