Searched refs:ImmutableMap (Results 1 – 13 of 13) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
H A D | ImmutableMap.h | 62 class ImmutableMap { 80 explicit ImmutableMap(const TreeTy *R) : Root(const_cast<TreeTy *>(R)) {} in ImmutableMap() function 95 ImmutableMap getEmptyMap() { return ImmutableMap(F.getEmptyTree()); } in getEmptyMap() 97 LLVM_NODISCARD ImmutableMap add(ImmutableMap Old, key_type_ref K, in add() 100 return ImmutableMap(Canonicalize ? F.getCanonicalTree(T): T); in add() 103 LLVM_NODISCARD ImmutableMap remove(ImmutableMap Old, key_type_ref K) { in remove() 105 return ImmutableMap(Canonicalize ? F.getCanonicalTree(T): T); in remove() 117 bool operator==(const ImmutableMap &RHS) const { 121 bool operator!=(const ImmutableMap &RHS) const { 191 class iterator : public ImutAVLValueIterator<ImmutableMap> { [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | ProgramStateTrait.h | 70 #define CLANG_ENTO_PROGRAMSTATE_MAP(Key, Value) llvm::ImmutableMap<Key, Value> 93 using Name = llvm::ImmutableMap<Key, Value>; \ 146 struct ProgramStatePartialTrait<llvm::ImmutableMap<Key, Data, Info>> { 147 using data_type = llvm::ImmutableMap<Key, Data, Info>;
|
H A D | Environment.h | 60 using BindingsTy = llvm::ImmutableMap<EnvironmentEntry, SVal>;
|
H A D | RangedConstraintManager.h | 310 using ConstraintMap = llvm::ImmutableMap<SymbolRef, RangeSet>;
|
H A D | ProgramState.h | 75 typedef llvm::ImmutableMap<void*, void*> GenericDataMap;
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
H A D | MPITypes.h | 49 typedef llvm::ImmutableMap<const clang::ento::MemRegion *,
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
H A D | BlockCounter.cpp | 47 typedef llvm::ImmutableMap<CountKey, unsigned> CountMap;
|
H A D | RegionStore.cpp | 146 typedef llvm::ImmutableMap<BindingKey, SVal> ClusterBindings; 150 typedef llvm::ImmutableMap<const MemRegion *, ClusterBindings>
|
H A D | ExprEngine.cpp | 191 typedef llvm::ImmutableMap<ConstructedObjectKey, SVal>
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
H A D | NSErrorChecker.cpp | 179 typedef llvm::ImmutableMap<SymbolRef, unsigned> ErrorOutFlag;
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/ |
H A D | RetainSummaryManager.h | 279 typedef llvm::ImmutableMap<unsigned, ArgEffect> ArgEffects;
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
H A D | ThreadSafety.cpp | 322 using LocalVarContext = llvm::ImmutableMap<const NamedDecl *, unsigned>;
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | ProgrammersManual.rst | 2337 llvm/ADT/ImmutableMap.h 2340 ImmutableMap is an immutable (functional) map implementation based on an AVL 2342 in the creation of a new ImmutableMap object. If an ImmutableMap already exists
|