Home
last modified time | relevance | path

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

/art/libartbase/base/
Dbit_vector-inl.h28 inline bool BitVector::IndexIterator::operator==(const IndexIterator& other) const {
34 inline uint32_t BitVector::IndexIterator::operator*() const {
39 inline BitVector::IndexIterator& BitVector::IndexIterator::operator++() {
45 inline BitVector::IndexIterator BitVector::IndexIterator::operator++(int) {
46 IndexIterator result(*this);
51 inline uint32_t BitVector::IndexIterator::FindIndex(uint32_t start_index) const { in FindIndex()
70 inline BitVector::IndexIterator::IndexIterator(const BitVector* bit_vector, begin_tag) in IndexIterator() function
75 inline BitVector::IndexIterator::IndexIterator(const BitVector* bit_vector, end_tag) in IndexIterator() function
80 inline BitVector::IndexIterator BitVector::IndexContainer::begin() const { in begin()
81 return IndexIterator(bit_vector_, IndexIterator::begin_tag()); in begin()
[all …]
Dbit_vector.h49 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);
74 IndexIterator(const BitVector* bit_vector, end_tag);
95 IndexIterator begin() const;
96 IndexIterator end() const;
Dbit_vector_test.cc58 BitVector::IndexIterator iterator = bv.Indexes().begin(); in TEST()