Searched refs:SecondKey (Results 1 – 1 of 1) sorted by relevance
190 void add(FirstKeyType FirstKey, SecondKeyType SecondKey, ValueType Value) { in add() argument201 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() argument225 SecondMap->find(SecondKey); in find()229 ValueType find(SecondKeyType SecondKey) const { in find() argument230 typename LVAuxMapType::const_iterator AuxIter = AuxMap.find(SecondKey); in find()233 return find(AuxIter->second, SecondKey); in find()