Home
last modified time | relevance | path

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

/external/llvm-project/llvm/include/llvm/ADT/
DScopedHashTable.h85 class ScopedHashTableScope {
90 ScopedHashTableScope *PrevScope;
97 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, AllocatorTy> &HT);
98 ScopedHashTableScope(ScopedHashTableScope &) = delete;
99 ScopedHashTableScope &operator=(ScopedHashTableScope &) = delete;
100 ~ScopedHashTableScope();
102 ScopedHashTableScope *getParentScope() { return PrevScope; } in getParentScope()
103 const ScopedHashTableScope *getParentScope() const { return PrevScope; } in getParentScope()
154 using ScopeTy = ScopedHashTableScope<K, V, KInfo, AllocatorTy>;
158 friend class ScopedHashTableScope<K, V, KInfo, AllocatorTy>;
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DScopedHashTable.h85 class ScopedHashTableScope {
90 ScopedHashTableScope *PrevScope;
97 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, AllocatorTy> &HT);
98 ScopedHashTableScope(ScopedHashTableScope &) = delete;
99 ScopedHashTableScope &operator=(ScopedHashTableScope &) = delete;
100 ~ScopedHashTableScope();
102 ScopedHashTableScope *getParentScope() { return PrevScope; } in getParentScope()
103 const ScopedHashTableScope *getParentScope() const { return PrevScope; } in getParentScope()
154 using ScopeTy = ScopedHashTableScope<K, V, KInfo, AllocatorTy>;
158 friend class ScopedHashTableScope<K, V, KInfo, AllocatorTy>;
[all …]
/external/llvm/include/llvm/ADT/
DScopedHashTable.h82 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 …]
/external/llvm-project/mlir/examples/toy/Ch4/mlir/
DMLIRGen.cpp38 using llvm::ScopedHashTableScope;
125 ScopedHashTableScope<llvm::StringRef, mlir::Value> var_scope(symbolTable); in mlirGen()
405 ScopedHashTableScope<StringRef, mlir::Value> var_scope(symbolTable); in mlirGen()
/external/llvm-project/mlir/examples/toy/Ch2/mlir/
DMLIRGen.cpp38 using llvm::ScopedHashTableScope;
125 ScopedHashTableScope<llvm::StringRef, mlir::Value> var_scope(symbolTable); in mlirGen()
401 ScopedHashTableScope<StringRef, mlir::Value> var_scope(symbolTable); in mlirGen()
/external/llvm-project/mlir/examples/toy/Ch5/mlir/
DMLIRGen.cpp38 using llvm::ScopedHashTableScope;
125 ScopedHashTableScope<llvm::StringRef, mlir::Value> var_scope(symbolTable); in mlirGen()
405 ScopedHashTableScope<StringRef, mlir::Value> var_scope(symbolTable); in mlirGen()
/external/llvm-project/mlir/examples/toy/Ch6/mlir/
DMLIRGen.cpp38 using llvm::ScopedHashTableScope;
125 ScopedHashTableScope<llvm::StringRef, mlir::Value> var_scope(symbolTable); in mlirGen()
405 ScopedHashTableScope<StringRef, mlir::Value> var_scope(symbolTable); in mlirGen()
/external/llvm-project/mlir/examples/toy/Ch3/mlir/
DMLIRGen.cpp38 using llvm::ScopedHashTableScope;
125 ScopedHashTableScope<llvm::StringRef, mlir::Value> var_scope(symbolTable); in mlirGen()
401 ScopedHashTableScope<StringRef, mlir::Value> var_scope(symbolTable); in mlirGen()
/external/llvm-project/mlir/examples/toy/Ch7/mlir/
DMLIRGen.cpp38 using llvm::ScopedHashTableScope;
104 llvm::ScopedHashTableScope<StringRef,
/external/llvm-project/mlir/lib/Conversion/PDLToPDLInterp/
DPDLToPDLInterp.cpp41 using ValueMapScope = llvm::ScopedHashTableScope<Position *, Value>;