Searched refs:ImmutableMapRef (Results 1 – 5 of 5) 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-7.0/llvm/include/llvm/ADT/ |
D | ImmutableMap.h | 258 class ImmutableMapRef { 278 explicit ImmutableMapRef(const TreeTy *R, FactoryTy *F) in ImmutableMapRef() function 285 explicit ImmutableMapRef(const ImmutableMap<KeyT, ValT> &X, in ImmutableMapRef() function 292 ImmutableMapRef(const ImmutableMapRef &X) : Root(X.Root), Factory(X.Factory) { in ImmutableMapRef() function 298 ~ImmutableMapRef() { in ~ImmutableMapRef() 303 ImmutableMapRef &operator=(const ImmutableMapRef &X) { 317 static inline ImmutableMapRef getEmptyMap(FactoryTy *F) { in getEmptyMap() 318 return ImmutableMapRef(0, F); in getEmptyMap() 329 ImmutableMapRef add(key_type_ref K, data_type_ref D) const { in add() 331 return ImmutableMapRef(NewT, Factory); in add() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | ImmutableMap.h | 266 class ImmutableMapRef { 286 explicit ImmutableMapRef(const TreeTy* R, FactoryTy *F) in ImmutableMapRef() function 292 ImmutableMapRef(const ImmutableMapRef &X) in ImmutableMapRef() function 298 ImmutableMapRef &operator=(const ImmutableMapRef &X) { 312 ~ImmutableMapRef() { in ~ImmutableMapRef() 317 static inline ImmutableMapRef getEmptyMap(FactoryTy *F) { in getEmptyMap() 318 return ImmutableMapRef(0, F); in getEmptyMap() 321 ImmutableMapRef add(key_type_ref K, data_type_ref D) { in add() 323 return ImmutableMapRef(NewT, Factory); in add() 326 ImmutableMapRef remove(key_type_ref K) { in remove() [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;
|