Home
last modified time | relevance | path

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

/freebsd/contrib/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(); } in size()
97 auto Iter = StringToId.find(S); in getIdForString()
98 assert(Iter != StringToId.end()); in getIdForString()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugStringTableSubsection.h80 return StringToId.begin(); in begin()
83 StringMap<uint32_t>::const_iterator end() const { return StringToId.end(); } in end()
89 StringMap<uint32_t> StringToId; variable