Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DDebugStringTableSubsection.cpp49 auto P = StringToId.insert({S, StringSize}); in insert()
73 for (auto &Pair : StringToId) { in commit()
87 uint32_t DebugStringTableSubsection::size() const { return StringToId.size(); } in size()
99 auto Iter = StringToId.find(S); in getIdForString()
100 assert(Iter != StringToId.end()); in getIdForString()
/freebsd-12.1/contrib/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