Home | History | Annotate | Download | only in protobuf

Lines Matching defs:map_

89   Map<Key, T>* map_;
101 map_ = new Map<Key, T>;
112 map_ = Arena::CreateMessage<Map<Key, T> >(arena);
122 delete map_;
132 return *map_;
142 return map_;
152 return map_->size();
162 map_->clear();
173 for (typename Map<Key, T>::const_iterator it = other.map_->begin();
174 it != other.map_->end(); ++it) {
175 (*map_)[it->first] = it->second;
187 std::swap(map_, other->map_);
207 return *map_;
217 return map_;