Lines Matching refs:Iterator
43 class Iterator {
45 Iterator(const LocalNamesRange* range, InternalIndex index)
51 Iterator& operator++() {
59 friend bool operator==(const Iterator& a, const Iterator& b) {
63 friend bool operator!=(const Iterator& a, const Iterator& b) {
81 const Iterator* operator*() const { return this; }
124 inline Iterator begin() const { return Iterator(this, InternalIndex(0)); }
126 inline Iterator end() const { return Iterator(this, max_index()); }