reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
154 using ScopeTy = ScopedHashTableScope<K, V, KInfo, AllocatorTy>; 160 using ValTy = ScopedHashTableVal<K, V>; 162 DenseMap<K, ValTy*, KInfo> TopLevelMap; 182 size_type count(const K &Key) const { 186 V lookup(const K &Key) const { 194 void insert(const K &Key, const V &Val) { 198 using iterator = ScopedHashTableIterator<K, V, KInfo>; 202 iterator begin(const K &Key) { 203 typename DenseMap<K, ValTy*, KInfo>::iterator I = 216 void insertIntoScope(ScopeTy *S, const K &Key, const V &Val) { 218 ScopedHashTableVal<K, V> *&KeyEntry = TopLevelMap[Key];