Searched refs:TopLevelMap (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | ScopedHashTable.h | 153 DenseMap<K, ValTy*, KInfo> TopLevelMap; variable 165 assert(CurScope == 0 && TopLevelMap.empty() && "Scope imbalance!"); in ~ScopedHashTable() 176 return TopLevelMap.count(Key); in count() 180 typename DenseMap<K, ValTy*, KInfo>::iterator I = TopLevelMap.find(Key); in lookup() 181 if (I != TopLevelMap.end()) in lookup() 197 TopLevelMap.find(Key); in begin() 198 if (I == TopLevelMap.end()) return end(); in begin() 211 ScopedHashTableVal<K, V> *&KeyEntry = TopLevelMap[Key]; in insertIntoScope() 237 assert(HT.TopLevelMap[ThisEntry->getKey()] == ThisEntry && in ~ScopedHashTableScope() 239 HT.TopLevelMap.erase(ThisEntry->getKey()); in ~ScopedHashTableScope() [all …]
|
/external/llvm/include/llvm/ADT/ |
D | ScopedHashTable.h | 154 DenseMap<K, ValTy*, KInfo> TopLevelMap; variable 167 assert(!CurScope && TopLevelMap.empty() && "Scope imbalance!"); in ~ScopedHashTable() 176 return TopLevelMap.count(Key); in count() 180 typename DenseMap<K, ValTy*, KInfo>::iterator I = TopLevelMap.find(Key); in lookup() 181 if (I != TopLevelMap.end()) in lookup() 197 TopLevelMap.find(Key); in begin() 198 if (I == TopLevelMap.end()) return end(); in begin() 211 ScopedHashTableVal<K, V> *&KeyEntry = TopLevelMap[Key]; in insertIntoScope() 237 assert(HT.TopLevelMap[ThisEntry->getKey()] == ThisEntry && in ~ScopedHashTableScope() 239 HT.TopLevelMap.erase(ThisEntry->getKey()); in ~ScopedHashTableScope() [all …]
|