Lines Matching defs:index_
67 BaseIterator(HashSetType* hash_set, size_t index) : index_(index), hash_set_(hash_set) {
73 return hash_set_ == other.hash_set_ && this->index_ == other.index_;
81 this->index_ = this->NextNonEmptySlot(this->index_, hash_set_);
87 this->index_ = this->NextNonEmptySlot(this->index_, hash_set_);
92 DCHECK(!hash_set_->IsFreeSlot(this->index_));
93 return hash_set_->ElementForIndex(this->index_);
103 size_t index_;
274 if (num_buckets_ != 0 && IsFreeSlot(ret.index_)) {
283 if (num_buckets_ != 0 && IsFreeSlot(ret.index_)) {
318 size_t empty_index = it.index_;