Lines Matching refs:map_
28 for (const auto& command : map_) in AddCommandAddedCallback()
44 for (const auto& command : map_) { in AddCommandHandler()
59 for (const auto& command : map_) { in AddCommandHandler()
77 auto pair = map_.insert(std::make_pair(id, std::move(instance))); in Add()
94 auto p = map_.find(id); in RemoveLater()
95 if (p == map_.end()) in RemoveLater()
107 auto p = map_.find(id); in Remove()
108 if (p == map_.end()) in Remove()
112 map_.erase(p); in Remove()
141 auto p = map_.find(id); in Find()
142 return (p != map_.end()) ? p->second.get() : nullptr; in Find()