Home
last modified time | relevance | path

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

/art/libartbase/base/
Dhash_set.h42 HashSetIterator(HashSetType* hash_set, size_t index) : index_(index), hash_set_(hash_set) {} in HashSetIterator()
51 : index_(other.index_), hash_set_(other.hash_set_) {} in HashSetIterator()
57 return hash_set_ == other.hash_set_ && this->index_ == other.index_;
65 this->index_ = hash_set_->NextNonEmptySlot(index_);
76 DCHECK(!hash_set_->IsFreeSlot(this->index_));
77 return hash_set_->ElementForIndex(this->index_);
86 HashSetType* hash_set_; variable
103 DCHECK_EQ(lhs.hash_set_, rhs.hash_set_);