Searched refs:IndexIterator (Results 1 – 3 of 3) sorted by relevance
26 inline bool BitVector::IndexIterator::operator==(const IndexIterator& other) const {32 inline uint32_t BitVector::IndexIterator::operator*() const {37 inline BitVector::IndexIterator& BitVector::IndexIterator::operator++() {43 inline BitVector::IndexIterator BitVector::IndexIterator::operator++(int) {44 IndexIterator result(*this);49 inline uint32_t BitVector::IndexIterator::FindIndex(uint32_t start_index) const { in FindIndex()
49 class IndexIterator :52 bool operator==(const IndexIterator& other) const;54 bool operator!=(const IndexIterator& other) const {60 IndexIterator& operator++();62 IndexIterator operator++(int);73 IndexIterator(const BitVector* bit_vector, begin_tag) in IndexIterator() function78 IndexIterator(const BitVector* bit_vector, end_tag) in IndexIterator() function102 IndexIterator begin() const { in begin()103 return IndexIterator(bit_vector_, IndexIterator::begin_tag()); in begin()106 IndexIterator end() const { in end()[all …]
58 BitVector::IndexIterator iterator = bv.Indexes().begin(); in TEST()