Lines Matching refs:map_
105 DCHECK_NOT_NULL(impl_.map_);
106 impl_.allocator().DeleteArray(impl_.map_, capacity());
135 Entry* map_end() const { return impl_.map_ + impl_.capacity_; }
162 map_ = other.map_;
166 other.map_ = nullptr;
178 Entry* map_ = nullptr;
200 impl_.map_ = impl_.allocator().template NewArray<Entry>(capacity());
201 memcpy(impl_.map_, original->impl_.map_, capacity() * sizeof(Entry));
208 if (impl_.map_) impl_.allocator().DeleteArray(impl_.map_, capacity());
297 q = impl_.map_;
308 Entry* r = impl_.map_ + (q->hash & (capacity() - 1));
330 impl_.map_[i].clear();
339 return Next(impl_.map_ - 1);
348 DCHECK(impl_.map_ - 1 <= entry && entry < end);
368 Entry* map = impl_.map_;
401 impl_.map_ = impl_.allocator().template NewArray<Entry>(capacity);
402 if (impl_.map_ == nullptr) {
413 Entry* old_map = impl_.map_;
543 entry_ = map_->Next(entry_);
552 : map_(map), entry_(entry) {}
554 const Base* map_;