Home
last modified time | relevance | path

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

/art/runtime/base/
Dbit_vector-inl.h26 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()
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) in IndexIterator() function
78 IndexIterator(const BitVector* bit_vector, end_tag) in IndexIterator() function
102 IndexIterator begin() const { in begin()
103 return IndexIterator(bit_vector_, IndexIterator::begin_tag()); in begin()
106 IndexIterator end() const { in end()
[all …]
Dbit_vector_test.cc58 BitVector::IndexIterator iterator = bv.Indexes().begin(); in TEST()