/external/llvm/unittests/ADT/ |
D | StringMapTest.cpp | 21 StringMap<uint32_t> testMap; 54 StringMap<uint32_t>::iterator it = testMap.begin(); in assertSingleItemMap() 84 const StringMap<uint32_t>& constTestMap = testMap; in TEST_F() 142 llvm::StringMap<int> Map(2); in TEST_F() 173 for (StringMap<uint32_t>::iterator it = testMap.begin(); in TEST_F() 189 StringMap<uint32_t>::value_type* entry = in TEST_F() 190 StringMap<uint32_t>::value_type::Create( in TEST_F() 201 StringMap<uint32_t>::value_type::Create( in TEST_F() 210 StringMap<uint32_t>::iterator NewIt; in TEST_F() 219 StringMap<uint32_t>::iterator ExistingIt; in TEST_F() [all …]
|
/external/llvm/lib/Support/ |
D | SpecialCaseList.cpp | 83 StringMap<StringMap<std::string> > Regexps; in parse() 146 for (StringMap<StringMap<std::string> >::const_iterator I = Regexps.begin(), in parse() 149 for (StringMap<std::string>::const_iterator II = I->second.begin(), in parse() 162 StringMap<StringMap<Entry> >::const_iterator I = Entries.find(Section); in inSection() 164 StringMap<Entry>::const_iterator II = I->second.find(Category); in inSection()
|
D | CommandLine.cpp | 147 StringMap<Option*> &OptionsMap) { in GetOptionInfo() 202 const StringMap<Option*> &OptionsMap) { in LookupOption() 211 StringMap<Option*>::const_iterator I = OptionsMap.find(Arg); in LookupOption() 217 StringMap<Option*>::const_iterator I = in LookupOption() 231 const StringMap<Option*> &OptionsMap, in LookupNearestOption() 244 for (StringMap<Option*>::const_iterator it = OptionsMap.begin(), in LookupNearestOption() 384 const StringMap<Option*> &OptionsMap) { in getOptionPred() 386 StringMap<Option*>::const_iterator OMI = OptionsMap.find(Name); in getOptionPred() 409 const StringMap<Option*> &OptionsMap) { in HandlePrefixedOrGroupedOption() 747 StringMap<Option*> Opts; in ParseCommandLineOptions() [all …]
|
D | DynamicLibrary.cpp | 27 static llvm::ManagedStatic<llvm::StringMap<void *> > ExplicitSymbols; 116 StringMap<void *>::iterator i = ExplicitSymbols->find(symbolName); in SearchForAddressOfSymbol()
|
/external/llvm/lib/Analysis/ |
D | LibCallSemantics.cpp | 23 static StringMap<const LibCallFunctionInfo*> *getMap(void *Ptr) { in getMap() 24 return static_cast<StringMap<const LibCallFunctionInfo*> *>(Ptr); in getMap() 45 StringMap<const LibCallFunctionInfo*> *Map = getMap(Impl); in getFunctionInfo() 50 Impl = Map = new StringMap<const LibCallFunctionInfo*>(); in getFunctionInfo()
|
/external/chromium_org/chrome/browser/devtools/device/adb/ |
D | adb_device_info_query.cc | 85 typedef std::map<std::string, std::string> StringMap; typedef 88 StringMap& pid_to_package, in MapProcessesToPackages() 89 StringMap& package_to_pid) { in MapProcessesToPackages() 108 static StringMap MapSocketsToProcesses(const std::string& response, in MapSocketsToProcesses() 119 StringMap socket_to_pid; in MapSocketsToProcesses() 292 StringMap pid_to_package; in ParseBrowserInfo() 293 StringMap package_to_pid; in ParseBrowserInfo() 296 StringMap socket_to_pid = MapSocketsToProcesses(sockets_response, in ParseBrowserInfo() 304 for (StringMap::iterator it = socket_to_pid.begin(); in ParseBrowserInfo() 310 StringMap::iterator pit = pid_to_package.find(pid); in ParseBrowserInfo()
|
/external/chromium_org/net/proxy/ |
D | proxy_config_service_android_unittest.cc | 48 typedef std::map<std::string, std::string> StringMap; typedef 54 ProxyConfigServiceAndroidTestBase(const StringMap& initial_configuration) in ProxyConfigServiceAndroidTestBase() 83 StringMap::const_iterator it = configuration_.find(key); in GetProperty() 104 StringMap configuration_; 113 : ProxyConfigServiceAndroidTestBase(StringMap()) {} in ProxyConfigServiceAndroidTest() 123 StringMap MakeInitialConfiguration() { in MakeInitialConfiguration() 124 StringMap initial_configuration; in MakeInitialConfiguration()
|
/external/llvm/include/llvm/ADT/ |
D | StringMap.h | 226 class StringMap : public StringMapImpl { 231 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {} in StringMap() function 232 explicit StringMap(unsigned InitialSize) in StringMap() function 235 explicit StringMap(AllocatorTy A) in StringMap() function 238 StringMap(unsigned InitialSize, AllocatorTy A) in StringMap() function 242 StringMap(StringMap &&RHS) in StringMap() function 245 StringMap &operator=(StringMap RHS) { 397 ~StringMap() { in ~StringMap()
|
D | StringSet.h | 23 class StringSet : public llvm::StringMap<char, AllocatorTy> { 24 typedef llvm::StringMap<char, AllocatorTy> base;
|
/external/clang/lib/Tooling/ |
D | FileMatchTrie.cpp | 108 llvm::StringMap<FileMatchTrieNode>::const_iterator MatchingChild = in findEquivalent() 136 llvm::StringMap<FileMatchTrieNode>::const_iterator Except) const { in getAll() 143 for (llvm::StringMap<FileMatchTrieNode>::const_iterator in getAll() 157 llvm::StringMap<FileMatchTrieNode> Children;
|
D | CommonOptionsParser.cpp | 69 StringMap<cl::Option*> Options; in CommonOptionsParser() 71 for (StringMap<cl::Option *>::iterator I = Options.begin(), E = Options.end(); in CommonOptionsParser()
|
D | JSONCompilationDatabase.cpp | 182 llvm::StringMap< std::vector<CompileCommandRef> >::const_iterator in getCompileCommands() 195 llvm::StringMap< std::vector<CompileCommandRef> >::const_iterator in getAllFiles() 197 const llvm::StringMap< std::vector<CompileCommandRef> >::const_iterator in getAllFiles() 209 for (llvm::StringMap< std::vector<CompileCommandRef> >::const_iterator in getAllCompileCommands()
|
/external/llvm/utils/FileCheck/ |
D | FileCheck.cpp | 125 StringMap<StringRef> &VariableTable) const; 130 const StringMap<StringRef> &VariableTable) const; 145 const StringMap<StringRef> &VariableTable) const; 366 StringMap<StringRef> &VariableTable) const { in Match() 396 StringMap<StringRef>::iterator it = in Match() 438 const StringMap<StringRef> &VariableTable) const { in ComputeMatchDistance() 456 const StringMap<StringRef> &VariableTable) const{ in PrintFailureInfo() 475 StringMap<StringRef>::const_iterator it = VariableTable.find(Var); in PrintFailureInfo() 606 size_t &MatchLen, StringMap<StringRef> &VariableTable) const; 614 StringMap<StringRef> &VariableTable) const; [all …]
|
/external/llvm/lib/Target/NVPTX/ |
D | NVVMReflect.cpp | 49 StringMap<int> VarMap; 59 NVVMReflect(const StringMap<int> &Mapping) in NVVMReflect() 62 for (StringMap<int>::const_iterator I = Mapping.begin(), E = Mapping.end(); in NVVMReflect() 83 ModulePass *llvm::createNVVMReflectPass(const StringMap<int>& Mapping) { in createNVVMReflectPass()
|
/external/llvm/include/llvm/Support/ |
D | SpecialCaseList.h | 86 StringMap<StringMap<Entry> > Entries;
|
/external/llvm/lib/Object/ |
D | RecordStreamer.h | 21 StringMap<State> Symbols; 28 typedef StringMap<State>::const_iterator const_iterator;
|
/external/llvm/test/Transforms/GVN/ |
D | nonescaping-malloc.ll | 15 %"struct.llvm::StringMap<void*,llvm::MallocAllocator>" = type { %"struct.llvm::StringMapImpl", %"st… 22 …"* @_Z3fooRN4llvm9StringMapIPvNS_15MallocAllocatorEEEPKc(%"struct.llvm::StringMap<void*,llvm::Mall… 30 …S_15MallocAllocatorEE16GetOrCreateValueERKNS_9StringRefE(%"struct.llvm::StringMap<void*,llvm::Mall… 40 …S_15MallocAllocatorEE16GetOrCreateValueERKNS_9StringRefE(%"struct.llvm::StringMap<void*,llvm::Mall… 46 …%tmp2.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>"* %this, i6… 48 …%tmp4.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>"* %this, i6… 99 …%tmp25.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>"* %this, i…
|
/external/llvm/include/llvm/TableGen/ |
D | SetTheory.h | 98 StringMap<Operator*> Operators; 101 StringMap<Expander*> Expanders;
|
/external/llvm/lib/IR/ |
D | Module.cpp | 51 NamedMDSymTab = new StringMap<NamedMDNode *>(); in Module() 63 delete static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab); in ~Module() 238 return static_cast<StringMap<NamedMDNode*> *>(NamedMDSymTab)->lookup(NameRef); in getNamedMetadata() 246 (*static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab))[Name]; in getOrInsertNamedMetadata() 258 static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab)->erase(NMD->getName()); in eraseNamedMetadata()
|
D | LLVMContextImpl.h | 263 StringMap<Value*> MDStringCache; 288 StringMap<ConstantDataSequential*> CDSConstants; 319 StringMap<StructType*> NamedStructTypes; 335 StringMap<unsigned> CustomMDKindNames;
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
D | sync_extension_helper.h | 93 typedef std::map<std::string, std::string> StringMap; typedef 116 StringMap id_to_name_;
|
/external/clang/include/clang/Basic/ |
D | FileSystemStatCache.h | 114 llvm::StringMap<FileData, llvm::BumpPtrAllocator> StatCalls; 116 typedef llvm::StringMap<FileData, llvm::BumpPtrAllocator>::const_iterator
|
/external/clang/lib/Driver/ |
D | Multilib.cpp | 100 llvm::StringMap<int> FlagSet; in isValid() 103 llvm::StringMap<int>::iterator SI = FlagSet.find(Flag.substr(1)); in isValid() 267 llvm::StringMap<bool> FlagSet; in select() 279 llvm::StringMap<bool>::const_iterator SI = FlagSet.find(Flag.substr(1)); in select()
|
/external/llvm/lib/LTO/ |
D | LTOModule.cpp | 200 StringMap<NameAndAttributes>::value_type &entry = in addObjCClass() 239 StringMap<NameAndAttributes>::value_type &entry = in addObjCCategory() 260 StringMap<NameAndAttributes>::value_type &entry = in addObjCClassRef() 476 StringMap<NameAndAttributes>::value_type &entry = in addAsmGlobalSymbolUndef() 505 StringMap<NameAndAttributes>::value_type &entry = in addPotentialUndefinedSymbol() 578 for (StringMap<NameAndAttributes>::iterator u =_undefines.begin(), in parseSymbols()
|
/external/valgrind/main/VEX/unused/ |
D | linker.c | 217 StringMap; typedef 219 static StringMap* new_StringMap ( void ) in new_StringMap() 221 StringMap* sm = malloc(sizeof(StringMap)); in new_StringMap() 228 static void delete_StringMap ( StringMap* sm ) in delete_StringMap() 236 static void ensure_StringMap ( StringMap* sm ) in ensure_StringMap() 251 static void* search_StringMap ( StringMap* sm, char* name ) in search_StringMap() 260 static void addto_StringMap ( StringMap* sm, char* name, void* addr ) in addto_StringMap() 268 static void paranoid_addto_StringMap ( StringMap* sm, char* name, void* addr ) in paranoid_addto_StringMap() 284 StringMap* global_symbol_table = NULL;
|