Home
last modified time | relevance | path

Searched refs:name_to_symbol_ (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/tint/src/
Dsymbol_table.cc37 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()
Dsymbol_table.h89 std::unordered_map<std::string, Symbol> name_to_symbol_; variable