Lines Matching refs:map_
165 index_ = map_->NextIndex(index_);
169 Object key() const { return Object(map_->KeyAtIndex(index_)); }
171 return reinterpret_cast<V*>(map_->EntryAtIndex(index_));
180 Iterator(IdentityMap* map, int index) : map_(map), index_(index) {}
182 IdentityMap* map_;
190 explicit IteratableScope(IdentityMap* map) : map_(map) {
191 CHECK(!map_->is_iterable());
192 map_->EnableIteration();
197 CHECK(map_->is_iterable());
198 map_->DisableIteration();
201 Iterator begin() { return Iterator(map_, map_->NextIndex(-1)); }
202 Iterator end() { return Iterator(map_, map_->capacity()); }
205 IdentityMap* map_;