Home | History | Annotate | Download | only in src

Lines Matching refs:Iterator

313   class Iterator {
315 Iterator& operator++() {
321 bool operator!=(const Iterator& other) { return entry_ != other.entry_; }
324 Iterator(const TemplateHashMapImpl<AllocationPolicy>* map,
342 Iterator begin() const { return Iterator(this, this->Start()); }
343 Iterator end() const { return Iterator(this, NULL); }
344 Iterator find(Key* key, bool insert = false,
347 return Iterator(this, this->LookupOrInsert(key, key->Hash(), allocator));
349 return Iterator(this, this->Lookup(key, key->Hash()));