Searched refs:name_to_symbol_ (Results 1 – 2 of 2) sorted by relevance
37 auto it = name_to_symbol_.find(name); in Register()38 if (it != name_to_symbol_.end()) in Register()48 name_to_symbol_[name] = sym; in Register()55 auto it = name_to_symbol_.find(name); in Get()56 return it != name_to_symbol_.end() ? it->second : Symbol(); in Get()73 auto it = name_to_symbol_.find(prefix); in New()74 if (it == name_to_symbol_.end()) { in New()81 } while (name_to_symbol_.count(name)); in New()
89 std::unordered_map<std::string, Symbol> name_to_symbol_; variable