Lines Matching refs:index_
165 index_ = map_->NextIndex(index_);
169 Object key() const { return Object(map_->KeyAtIndex(index_)); }
171 return reinterpret_cast<V*>(map_->EntryAtIndex(index_));
176 bool operator!=(const Iterator& other) { return index_ != other.index_; }
177 bool operator==(const Iterator& other) { return index_ == other.index_; }
180 Iterator(IdentityMap* map, int index) : map_(map), index_(index) {}
183 int index_;