Lines Matching refs:this
72 return hash_set_ == other.hash_set_ && this->index_ == other.index_;
76 return !(*this == other);
80 this->index_ = this->NextNonEmptySlot(this->index_, hash_set_);
81 return *this;
85 Iterator temp = *this;
86 this->index_ = this->NextNonEmptySlot(this->index_, hash_set_);
91 DCHECK(!hash_set_->IsFreeSlot(this->index_));
92 return hash_set_->ElementForIndex(this->index_);
96 return &**this;
140 *this = other; in HashSet()
145 *this = std::move(other); in HashSet()
209 return *this;
222 return *this;
227 Iterator ret(this, 0); in begin()
236 return Iterator(this, NumBuckets()); in end()
313 return Iterator(this, FindIndex(element, hash)); in FindWithHash()
318 return ConstIterator(this, FindIndex(element, hash)); in FindWithHash()