Searched refs:ScopedHashTableScope (Results 1 – 3 of 3) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | ScopedHashTable.h | 86 class ScopedHashTableScope { 91 ScopedHashTableScope *PrevScope; 98 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, AllocatorTy> &HT); 99 ScopedHashTableScope(ScopedHashTableScope &) = delete; 100 ScopedHashTableScope &operator=(ScopedHashTableScope &) = delete; 101 ~ScopedHashTableScope(); 103 ScopedHashTableScope *getParentScope() { return PrevScope; } in getParentScope() 104 const ScopedHashTableScope *getParentScope() const { return PrevScope; } in getParentScope() 155 using ScopeTy = ScopedHashTableScope<K, V, KInfo, AllocatorTy>; 159 friend class ScopedHashTableScope<K, V, KInfo, AllocatorTy>; [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | ScopedHashTable.h | 83 class ScopedHashTableScope { 88 ScopedHashTableScope *PrevScope; 93 void operator=(ScopedHashTableScope&); // DO NOT IMPLEMENT 94 ScopedHashTableScope(ScopedHashTableScope&); // DO NOT IMPLEMENT 96 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, AllocatorTy> &HT); 97 ~ScopedHashTableScope(); 99 ScopedHashTableScope *getParentScope() { return PrevScope; } in getParentScope() 100 const ScopedHashTableScope *getParentScope() const { return PrevScope; } in getParentScope() 150 typedef ScopedHashTableScope<K, V, KInfo, AllocatorTy> ScopeTy; 160 friend class ScopedHashTableScope<K, V, KInfo, AllocatorTy>; variable [all …]
|
/external/llvm/include/llvm/ADT/ |
D | ScopedHashTable.h | 82 class ScopedHashTableScope { 87 ScopedHashTableScope *PrevScope; 92 void operator=(ScopedHashTableScope &) = delete; 93 ScopedHashTableScope(ScopedHashTableScope &) = delete; 96 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, AllocatorTy> &HT); 97 ~ScopedHashTableScope(); 99 ScopedHashTableScope *getParentScope() { return PrevScope; } in getParentScope() 100 const ScopedHashTableScope *getParentScope() const { return PrevScope; } in getParentScope() 149 typedef ScopedHashTableScope<K, V, KInfo, AllocatorTy> ScopeTy; 161 friend class ScopedHashTableScope<K, V, KInfo, AllocatorTy>; variable [all …]
|