Home
last modified time | relevance | path

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

/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugStringTableSubsection.cpp47 auto P = StringToId.insert({S, StringSize}); in insert()
71 for (auto &Pair : StringToId) { in commit()
85 uint32_t DebugStringTableSubsection::size() const { return StringToId.size(); }
97 auto Iter = StringToId.find(S); in getIdForString()
98 assert(Iter != StringToId.end()); in getIdForString()
/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugStringTableSubsection.h79 return StringToId.begin(); in begin()
82 StringMap<uint32_t>::const_iterator end() const { return StringToId.end(); } in end()
88 StringMap<uint32_t> StringToId; variable