Home | History | Annotate | Download | only in base

Lines Matching defs:map_

58   void Add(const char * name, const char * value) { map_[name] = value; }
61 map_.find(name);
62 if (it != map_.end())
68 return (map_.find(name) != map_.end());
71 std::map<std::string, std::string> map_;