Home | History | Annotate | Download | only in base

Lines Matching refs:map_

45   linked_hash_map() : map_(), list_() {
84 map_.clear();
96 typename MapType::iterator found = map_.find(key);
97 if (found == map_.end()) return 0;
100 map_.erase(found);
109 typename MapType::iterator found = map_.find(position->first);
114 map_.erase(found);
128 typename MapType::iterator found = map_.find(key);
129 if (found == map_.end()) {
136 typename MapType::const_iterator found = map_.find(key);
137 if (found == map_.end()) {
147 map_.equal_range(key);
156 map_.equal_range(key);
157 const const_iterator& start_iter = eq_range.first != map_.end() ?
159 const const_iterator& end_iter = eq_range.second != map_.end() ?
176 typename MapType::iterator found = map_.find(pair.first);
177 if (found != map_.end()) return make_pair(found->second, false);
187 CHECK(map_.insert(make_pair(pair.first, last)).second)
198 map_.swap(other.map_);
204 MapType map_;