| /llvm-project-15.0.7/libcxx/test/std/containers/associative/ |
| H A D | iterator_types.pass.cpp | 55 typedef std::map<int, int> Map; in main() typedef 62 typedef std::map<int, int, std::less<int>, Alloc> Map; in main() typedef 69 typedef std::map<int, int, std::less<int>, Alloc> Map; in main() typedef 74 typedef std::multimap<int, int> Map; in main() typedef 81 typedef std::multimap<int, int, std::less<int>, Alloc> Map; in main() typedef 88 typedef std::multimap<int, int, std::less<int>, Alloc> Map; in main() typedef
|
| /llvm-project-15.0.7/libcxx/test/std/containers/unord/ |
| H A D | iterator_difference_type.pass.cpp | 78 typedef std::unordered_map<int, int> Map; in main() typedef 85 typedef std::unordered_map<int, int, std::hash<int>, std::equal_to<int>, Alloc> Map; in main() typedef 92 typedef std::unordered_map<int, int, std::hash<int>, std::equal_to<int>, Alloc> Map; in main() typedef 97 typedef std::unordered_multimap<int, int> Map; in main() typedef 104 typedef std::unordered_multimap<int, int, std::hash<int>, std::equal_to<int>, Alloc> Map; in main() typedef 111 typedef std::unordered_multimap<int, int, std::hash<int>, std::equal_to<int>, Alloc> Map; in main() typedef
|
| /llvm-project-15.0.7/libcxx/benchmarks/ |
| H A D | map.bench.cpp | 115 auto& Map = Data.Maps.front(); in run() local 136 auto& Map = Data.Maps.front(); in run() local 158 for (auto& Map : Data.Maps) { in run() local 180 auto& Map = Data.Maps.front(); in run() local 199 auto& Map = Data.Maps.front(); in run() local 286 auto& Map = Data.Maps[I]; in run() local 317 auto& Map = Data.Maps[I]; in run() local 405 auto& Map = Data.Maps[I]; in run() local 436 auto& Map = Data.Maps[I]; in run() local 525 auto& Map = Data.Maps[I]; in run() local [all …]
|
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | RangeMapTest.cpp | 110 RangeDataVectorT Map; in TEST() local 127 RangeDataVectorT Map; in TEST() local 145 auto Map = RangeDataVectorT(); in TEST() local 186 RangeDataVectorT Map; in TEST() local 202 RangeDataVectorT Map; in TEST() local
|
| /llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/tests/ |
| H A D | bytemap_test.cpp | 16 template <typename T> void testMap(T &Map, scudo::uptr Size) { in testMap() 30 scudo::FlatByteMap<Size> Map; in TEST() local
|
| /llvm-project-15.0.7/llvm/unittests/Target/DirectX/ |
| H A D | PointerTypeAnalysisTests.cpp | 54 PointerTypeMap Map = PointerTypeAnalysis::run(*M); in TEST() local 76 PointerTypeMap Map = PointerTypeAnalysis::run(*M); in TEST() local 98 PointerTypeMap Map = PointerTypeAnalysis::run(*M); in TEST() local 120 PointerTypeMap Map = PointerTypeAnalysis::run(*M); in TEST() local 145 PointerTypeMap Map = PointerTypeAnalysis::run(*M); in TEST() local 173 PointerTypeMap Map = PointerTypeAnalysis::run(*M); in TEST() local
|
| /llvm-project-15.0.7/bolt/lib/Profile/ |
| H A D | BoltAddressTranslation.cpp | 21 void BoltAddressTranslation::writeEntriesForBB(MapTy &Map, in writeEntriesForBB() 71 MapTy Map; in write() local 101 MapTy &Map = MapEntry.second; in write() local 158 MapTy Map; in parse() local 203 const MapTy &Map = Iter->second; in translate() local 236 const MapTy &Map = Iter->second; in getFallthroughsInTrace() local
|
| /llvm-project-15.0.7/llvm/unittests/Analysis/ |
| H A D | AssumeBundleQueriesTest.cpp | 224 static bool FindExactlyAttributes(RetainedKnowledgeMap &Map, Value *WasOn, in FindExactlyAttributes() 241 static bool MapHasRightValue(RetainedKnowledgeMap &Map, AssumeInst *II, in MapHasRightValue() 268 RetainedKnowledgeMap Map; in TEST() local 293 RetainedKnowledgeMap Map; in TEST() local 316 RetainedKnowledgeMap Map; in TEST() local 325 RetainedKnowledgeMap Map; in TEST() local 341 RetainedKnowledgeMap Map; in TEST() local 378 RetainedKnowledgeMap Map; in TEST() local 397 RetainedKnowledgeMap Map; in TEST() local 471 RetainedKnowledgeMap Map; in RunRandTest() local
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | DeclLookups.h | 79 if (StoredDeclsMap *Map = Primary->buildLookup()) in lookups() local 93 if (StoredDeclsMap *Map = Primary->getLookupPtr()) in noload_lookups() local
|
| /llvm-project-15.0.7/polly/lib/Support/ |
| H A D | ISLTools.cpp | 85 isl::map polly::beforeScatter(isl::map Map, bool Strict) { in beforeScatter() 95 for (isl::map Map : UMap.get_map_list()) { in beforeScatter() local 103 isl::map polly::afterScatter(isl::map Map, bool Strict) { in afterScatter() 112 for (isl::map Map : UMap.get_map_list()) { in afterScatter() local 165 for (isl::map Map : Schedule.get_map_list()) { in getNumScatterDims() local 199 isl::map polly::reverseDomain(isl::map Map) { in reverseDomain() 209 for (isl::map Map : UMap.get_map_list()) { in reverseDomain() local 270 for (isl::map Map : UMap.get_map_list()) { in shiftDim() local 289 void polly::simplify(isl::map &Map) { in simplify() 443 isl::map polly::distributeDomain(isl::map Map) { in distributeDomain() [all …]
|
| /llvm-project-15.0.7/clang/include/clang/Lex/ |
| H A D | DirectoryLookup.h | 45 const HeaderMap *Map; member 48 DLU(const HeaderMap *Map) : Map(Map) {} in DLU() 75 DirectoryLookup(const HeaderMap *Map, SrcMgr::CharacteristicKind DT, in DirectoryLookup()
|
| /llvm-project-15.0.7/lldb/unittests/Core/ |
| H A D | UniqueCStringMapTest.cpp | 36 MapT Map; in TEST() local 56 UniqueCStringMap<int> Map; in TEST() local
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | SymbolRemappingReaderTest.cpp | 62 StringRef Map = R"( in TEST_F() local 75 StringRef Map = R"( in TEST_F() local
|
| H A D | ReverseIterationTest.cpp | 36 DenseMap<int, int> Map; in TEST() local 93 DenseMap<PtrLikeInt *, int> Map; in TEST() local
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/utils/ |
| H A D | ExprSequence.h | 117 llvm::DenseMap<const Stmt *, const CFGBlock *> Map; variable
|
| /llvm-project-15.0.7/llvm/lib/Target/DirectX/ |
| H A D | PointerTypeAnalysis.cpp | 65 void classifyFunctionType(const Function &F, PointerTypeMap &Map) { in classifyFunctionType() 102 PointerTypeMap Map; in run() local
|
| /llvm-project-15.0.7/llvm/unittests/Support/CommandLineInit/ |
| H A D | CommandLineInitTest.cpp | 53 StringMap<cl::Option *> &Map = in TEST() local
|
| /llvm-project-15.0.7/libcxx/test/libcxx/containers/gnu_cxx/ |
| H A D | hash_map_name_lookup.pass.cpp | 33 typedef __gnu_cxx::hash_map<int, int> Map; in main() typedef
|
| /llvm-project-15.0.7/compiler-rt/lib/memprof/ |
| H A D | memprof_mibmap.cpp | 21 void InsertOrMerge(const uptr Id, const MemInfoBlock &Block, MIBMapTy &Map) { in InsertOrMerge()
|
| /llvm-project-15.0.7/libcxx/test/std/containers/associative/map/map.cons/ |
| H A D | assign_initializer_list.pass.cpp | 78 typedef std::map<int, int, std::less<int>, test_allocator<std::pair<const int, int> > > Map; in duplicate_keys_test() typedef
|
| /llvm-project-15.0.7/polly/lib/Transform/ |
| H A D | FlattenAlgo.cpp | 57 bool isVariableDim(const isl::map &Map) { in isVariableDim() 67 for (isl::map Map : UMap.get_map_list()) in isVariableDim() local 122 for (isl::map Map : UMap.get_map_list()) { in scheduleProjectOut() local 132 for (isl::map Map : UMap.get_map_list()) { in scheduleExtractDimAff() local
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | MachineModuleInfoImpls.cpp | 36 DenseMap<MCSymbol *, MachineModuleInfoImpl::StubValueTy> &Map) { in getSortedStubs()
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ModuleFile.cpp | 34 const ContinuousRangeMap<Key, Offset, InitialCapacity> &Map) { in dumpLocalRemap()
|
| /llvm-project-15.0.7/clang/lib/AST/Interp/ |
| H A D | Pointer.cpp | 142 InitMap *Map = getInitMap(); in isInitialized() local 160 InitMap *&Map = getInitMap(); in initialize() local
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | ValueMap.h | 93 MapT Map; variable 104 : Map(NumInitBuckets), Data() {} in Map() function 106 : Map(NumInitBuckets), Data(Data) {} in Map() function
|