Searched refs:StringMap (Results 1 - 25 of 147) sorted by relevance

123456

/external/llvm/lib/Analysis/
H A DLibCallSemantics.cpp17 #include "llvm/ADT/StringMap.h"
21 /// getMap - This impl pointer in ~LibCallInfo is actually a StringMap. This
23 static StringMap<const LibCallFunctionInfo*> *getMap(void *Ptr) {
24 return static_cast<StringMap<const LibCallFunctionInfo*> *>(Ptr);
45 StringMap<const LibCallFunctionInfo*> *Map = getMap(Impl);
48 /// the StringMap to index it.
50 Impl = Map = new StringMap<const LibCallFunctionInfo*>();
55 // We now have the array of entries. Populate the StringMap.
/external/llvm/include/llvm/ADT/
H A DStringSet.h10 // StringSet - A set-like wrapper for the StringMap.
17 #include "llvm/ADT/StringMap.h"
21 /// StringSet - A wrapper for StringMap that provides set-like functionality.
23 class StringSet : public llvm::StringMap<char, AllocatorTy> {
24 typedef llvm::StringMap<char, AllocatorTy> base;
H A DStringMap.h1 //===--- StringMap.h - String Hash table map interface ----------*- C++ -*-===//
10 // This file defines the StringMap class.
51 /// StringMapImpl - This is the base class of StringMap that is shared among
115 /// a StringMap. It contains the Value itself and the key: the string length
231 /// StringMap - This is an unconventional map that is specialized for handling
236 class StringMap : public StringMapImpl { class in namespace:llvm
241 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {} function in class:llvm::StringMap
242 explicit StringMap(unsigned InitialSize) function in class:llvm::StringMap
245 explicit StringMap(AllocatorTy A) function in class:llvm::StringMap
248 StringMap(unsigne function in class:llvm::StringMap
252 StringMap(const StringMap &RHS) function in class:llvm::StringMap
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSpecialCaseList.cpp72 StringMap<StringMap<std::string> > Regexps;
129 for (StringMap<StringMap<std::string> >::const_iterator I = Regexps.begin(),
132 for (StringMap<std::string>::const_iterator II = I->second.begin(),
141 for (StringMap<StringMap<Entry> >::iterator I = Entries.begin(),
144 for (StringMap<Entry>::const_iterator II = I->second.begin(),
199 StringMap<StringMap<Entr
[all...]
/external/llvm/include/llvm/Transforms/Utils/
H A DSpecialCaseList.h48 #include "llvm/ADT/StringMap.h"
93 StringMap<StringMap<Entry> > Entries;
/external/llvm/include/llvm/Support/
H A DHost.h17 #include "llvm/ADT/StringMap.h"
70 bool getHostCPUFeatures(StringMap<bool> &Features);
/external/chromium/chrome/browser/importer/
H A Dmork_reader.h117 typedef std::map<IDString, std::string> StringMap; typedef in class:MorkReader
129 StringMap* map);
151 StringMap value_map_;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h20 #include "llvm/ADT/StringMap.h"
70 StringMap<DIE*> GlobalNames;
74 StringMap<DIE*> GlobalTypes;
78 StringMap<std::vector<DIE*> > AccelNames;
79 StringMap<std::vector<DIE*> > AccelObjC;
80 StringMap<std::vector<DIE*> > AccelNamespace;
81 StringMap<std::vector<std::pair<DIE*, unsigned> > > AccelTypes;
108 const StringMap<DIE*> &getGlobalNames() const { return GlobalNames; }
109 const StringMap<DIE*> &getGlobalTypes() const { return GlobalTypes; }
111 const StringMap<st
[all...]
/external/clang/include/clang/Frontend/
H A DLayoutOverrideSource.h15 #include "llvm/ADT/StringMap.h"
39 llvm::StringMap<Layout> Layouts;
/external/clang/include/clang/Basic/
H A DFileSystemStatCache.h20 #include "llvm/ADT/StringMap.h"
101 llvm::StringMap<FileData, llvm::BumpPtrAllocator> StatCalls;
103 typedef llvm::StringMap<FileData, llvm::BumpPtrAllocator>::const_iterator
/external/llvm/unittests/ADT/
H A DStringMapTest.cpp1 //===- llvm/unittest/ADT/StringMapMap.cpp - StringMap unit tests ----------===//
11 #include "llvm/ADT/StringMap.h"
20 StringMap<uint32_t> testMap;
53 StringMap<uint32_t>::iterator it = testMap.begin();
83 const StringMap<uint32_t>& constTestMap = testMap;
138 // StringMap has a tricky corner case when the map is small (<8 buckets) and
141 llvm::StringMap<int> Map(2);
172 for (StringMap<uint32_t>::iterator it = testMap.begin();
205 StringMap<uint32_t>::value_type* entry =
206 StringMap<uint32_
[all...]
/external/llvm/utils/TableGen/
H A DSetTheory.h51 #include "llvm/ADT/StringMap.h"
98 StringMap<Operator*> Operators;
101 StringMap<Expander*> Expanders;
H A DStringToOffsetTable.h15 #include "llvm/ADT/StringMap.h"
26 StringMap<unsigned> StringOffset;
/external/chromium_org/net/proxy/
H A Dproxy_config_service_android_unittest.cc48 typedef std::map<std::string, std::string> StringMap; typedef in namespace:net
54 ProxyConfigServiceAndroidTestBase(const StringMap& initial_configuration)
83 StringMap::const_iterator it = configuration_.find(key);
104 StringMap configuration_;
113 : ProxyConfigServiceAndroidTestBase(StringMap()) {}
123 StringMap MakeInitialConfiguration() {
124 StringMap initial_configuration;
/external/llvm/lib/Support/
H A DDynamicLibrary.cpp18 #include "llvm/ADT/StringMap.h"
25 static llvm::StringMap<void *> *ExplicitSymbols = 0;
49 ExplicitSymbols = new StringMap<void*>();
133 StringMap<void *>::iterator i = ExplicitSymbols->find(symbolName);
/external/clang/lib/Tooling/
H A DFileMatchTrie.cpp15 #include "llvm/ADT/StringMap.h"
108 llvm::StringMap<FileMatchTrieNode>::const_iterator MatchingChild =
136 llvm::StringMap<FileMatchTrieNode>::const_iterator Except) const {
143 for (llvm::StringMap<FileMatchTrieNode>::const_iterator
157 llvm::StringMap<FileMatchTrieNode> Children;
/external/llvm/lib/Target/NVPTX/
H A DNVVMReflect.cpp20 #include "llvm/ADT/StringMap.h"
46 StringMap<int> VarMap;
57 NVVMReflect(const StringMap<int> &Mapping)
60 for (StringMap<int>::const_iterator I = Mapping.begin(), E = Mapping.end();
77 ModulePass *llvm::createNVVMReflectPass(const StringMap<int>& Mapping) {
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dsync_extension_helper.h94 typedef std::map<std::string, std::string> StringMap; typedef in class:SyncExtensionHelper
117 StringMap id_to_name_;
/external/llvm/utils/FileCheck/
H A DFileCheck.cpp22 #include "llvm/ADT/StringMap.h"
108 /// The VariableTable StringMap provides the current values of filecheck
111 StringMap<StringRef> &VariableTable) const;
116 const StringMap<StringRef> &VariableTable) const;
136 const StringMap<StringRef> &VariableTable) const;
382 StringMap<StringRef> &VariableTable) const {
412 StringMap<StringRef>::iterator it =
454 const StringMap<StringRef> &VariableTable) const {
472 const StringMap<StringRef> &VariableTable) const{
491 StringMap<StringRe
[all...]
/external/clang/include/clang/Lex/
H A DPragma.h18 #include "llvm/ADT/StringMap.h"
93 llvm::StringMap<PragmaHandler*> Handlers;
/external/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerRegistry.h128 mutable llvm::StringMap<size_t> Packages;
/external/clang/include/clang/Tooling/
H A DJSONCompilationDatabase.h22 #include "llvm/ADT/StringMap.h"
103 llvm::StringMap< std::vector<CompileCommandRef> > IndexByFile;
/external/llvm/include/llvm/IR/
H A DValueSymbolTable.h17 #include "llvm/ADT/StringMap.h"
46 typedef StringMap<Value*> ValueMap;
/external/llvm/tools/lto/
H A DLTOCodeGenerator.h40 #include "llvm/ADT/StringMap.h"
116 typedef llvm::StringMap<uint8_t> StringSet;
/external/llvm/lib/IR/
H A DModule.cpp48 NamedMDSymTab = new StringMap<NamedMDNode *>();
60 delete static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab);
287 return static_cast<StringMap<NamedMDNode*> *>(NamedMDSymTab)->lookup(NameRef);
295 (*static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab))[Name];
307 static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab)->erase(NMD->getName());

Completed in 1622 milliseconds

123456