Home
last modified time | relevance | path

Searched refs:IndexIterator (Results 1 – 4 of 4) 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.h48 class IndexIterator :
51 bool operator==(const IndexIterator& other) const;
53 bool operator!=(const IndexIterator& other) const {
59 IndexIterator& operator++();
61 IndexIterator operator++(int);
72 IndexIterator(const BitVector* bit_vector, begin_tag) in IndexIterator() function
77 IndexIterator(const BitVector* bit_vector, end_tag) in IndexIterator() function
101 IndexIterator begin() const { in begin()
102 return IndexIterator(bit_vector_, IndexIterator::begin_tag()); in begin()
105 IndexIterator end() const { in end()
[all …]
Dbit_vector_test.cc58 BitVector::IndexIterator iterator = bv.Indexes().begin(); in TEST()
/art/compiler/dex/
Dssa_transformation.cc178 ScopedArenaVector<std::pair<BasicBlock*, ArenaBitVector::IndexIterator>> work_stack( in ComputeDomPostOrderTraversal()
183 std::pair<BasicBlock*, ArenaBitVector::IndexIterator>* curr = &work_stack.back(); in ComputeDomPostOrderTraversal()
185 ArenaBitVector::IndexIterator* curr_idom_iter = &curr->second; in ComputeDomPostOrderTraversal()