Searched refs:ImmutableMapRef (Results 1 – 4 of 4) sorted by relevance
/external/llvm/include/llvm/ADT/ |
D | ImmutableMap.h | 252 class ImmutableMapRef { 272 explicit ImmutableMapRef(const TreeTy *R, FactoryTy *F) in ImmutableMapRef() function 279 explicit ImmutableMapRef(const ImmutableMap<KeyT, ValT> &X, in ImmutableMapRef() function 286 ImmutableMapRef(const ImmutableMapRef &X) : Root(X.Root), Factory(X.Factory) { in ImmutableMapRef() function 292 ImmutableMapRef &operator=(const ImmutableMapRef &X) { 306 ~ImmutableMapRef() { in ~ImmutableMapRef() 311 static inline ImmutableMapRef getEmptyMap(FactoryTy *F) { in getEmptyMap() 312 return ImmutableMapRef(0, F); in getEmptyMap() 323 ImmutableMapRef add(key_type_ref K, data_type_ref D) const { in add() 325 return ImmutableMapRef(NewT, Factory); in add() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | ImmutableMap.h | 257 class ImmutableMapRef { 277 explicit ImmutableMapRef(const TreeTy *R, FactoryTy *F) in ImmutableMapRef() function 284 explicit ImmutableMapRef(const ImmutableMap<KeyT, ValT> &X, in ImmutableMapRef() function 291 ImmutableMapRef(const ImmutableMapRef &X) : Root(X.Root), Factory(X.Factory) { in ImmutableMapRef() function 297 ~ImmutableMapRef() { in ~ImmutableMapRef() 302 ImmutableMapRef &operator=(const ImmutableMapRef &X) { 316 static inline ImmutableMapRef getEmptyMap(FactoryTy *F) { in getEmptyMap() 317 return ImmutableMapRef(0, F); in getEmptyMap() 328 ImmutableMapRef add(key_type_ref K, data_type_ref D) const { in add() 330 return ImmutableMapRef(NewT, Factory); in add() [all …]
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | Environment.cpp | 159 llvm::ImmutableMapRef<EnvironmentEntry,SVal> in removeDeadBindings()
|
D | RegionStore.cpp | 145 typedef llvm::ImmutableMapRef<BindingKey, SVal> ClusterBindingsRef; 152 class RegionBindingsRef : public llvm::ImmutableMapRef<const MemRegion *, 157 typedef llvm::ImmutableMapRef<const MemRegion *, ClusterBindings> 163 : llvm::ImmutableMapRef<const MemRegion *, ClusterBindings>(T, F), in RegionBindingsRef() 167 : llvm::ImmutableMapRef<const MemRegion *, ClusterBindings>(P), in RegionBindingsRef() 187 using llvm::ImmutableMapRef<const MemRegion *, ClusterBindings>::lookup;
|