Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DDebugStringTableSubsection.cpp48 auto P = StringToId.insert({S, StringSize}); in insert()
72 for (auto &Pair : StringToId) { in commit()
86 uint32_t DebugStringTableSubsection::size() const { return StringToId.size(); } in size()
98 auto Iter = StringToId.find(S); in getIdForString()
99 assert(Iter != StringToId.end()); in getIdForString()
/openbsd-src/gnu/llvm/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