Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVSupport.h190 void add(FirstKeyType FirstKey, SecondKeyType SecondKey, ValueType Value) { in add() argument
201 if (SecondMap && SecondMap->find(SecondKey) == SecondMap->end()) in add()
202 SecondMap->emplace(SecondKey, Value); in add()
204 typename LVAuxMapType::iterator AuxIter = AuxMap.find(SecondKey); in add()
206 AuxMap.emplace(SecondKey, FirstKey); in add()
219 ValueType find(FirstKeyType FirstKey, SecondKeyType SecondKey) const { in find() argument
225 SecondMap->find(SecondKey); in find()
229 ValueType find(SecondKeyType SecondKey) const { in find() argument
230 typename LVAuxMapType::const_iterator AuxIter = AuxMap.find(SecondKey); in find()
233 return find(AuxIter->second, SecondKey); in find()