Lines Matching refs:index_
48 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_);
91 size_t index_;
110 return lhs.index_ == rhs.index_;
328 if (num_buckets_ != 0 && IsFreeSlot(ret.index_)) { in begin()
337 if (num_buckets_ != 0 && IsFreeSlot(ret.index_)) { in begin()
374 size_t empty_index = it.index_; in erase()