Home
last modified time | relevance | path

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

/art/libartbase/base/
Dhash_set.h48 HashSetIterator(HashSetType* hash_set, size_t index) : index_(index), hash_set_(hash_set) {} in HashSetIterator()
57 : index_(other.index_), hash_set_(other.hash_set_) {} in HashSetIterator()
63 return hash_set_ == other.hash_set_ && this->index_ == other.index_;
71 this->index_ = hash_set_->NextNonEmptySlot(index_);
82 DCHECK(!hash_set_->IsFreeSlot(this->index_));
83 return hash_set_->ElementForIndex(this->index_);
92 HashSetType* hash_set_; variable
109 DCHECK_EQ(lhs.hash_set_, rhs.hash_set_);