Lines Matching refs:IndexIterator
48 class IndexIterator
51 bool operator==(const IndexIterator& other) const {
57 bool operator!=(const IndexIterator& other) const {
66 IndexIterator& operator++() {
72 IndexIterator operator++(int) {
73 IndexIterator result(*this);
87 IndexIterator(const BitVector* bit_vector, begin_tag) in IndexIterator() function
92 IndexIterator(const BitVector* bit_vector, end_tag) in IndexIterator() function
134 IndexIterator begin() const { in begin()
135 return IndexIterator(bit_vector_, IndexIterator::begin_tag()); in begin()
138 IndexIterator end() const { in end()
139 return IndexIterator(bit_vector_, IndexIterator::end_tag()); in end()