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

12345

/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
25 class StringSet : public llvm::StringMap<char, AllocatorTy> {
26 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
108 /// a StringMap. It contains the Value itself and the key: the string length
225 /// StringMap - This is an unconventional map that is specialized for handling
230 class StringMap : public StringMapImpl { class in namespace:llvm
235 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {} function in class:llvm::StringMap
236 explicit StringMap(unsigned InitialSize) function in class:llvm::StringMap
239 explicit StringMap(AllocatorTy A) function in class:llvm::StringMap
242 StringMap(cons function in class:llvm::StringMap
[all...]
/external/llvm/include/llvm/Support/
H A DHost.h17 #include "llvm/ADT/StringMap.h"
62 bool getHostCPUFeatures(StringMap<bool> &Features);
H A DGCOV.h19 #include "llvm/ADT/StringMap.h"
200 StringMap<GCOVLines *> Lines;
221 StringMap<LineCounts> LineInfo;
/external/llvm/lib/Transforms/Instrumentation/
H A DBlackList.h29 #include "llvm/ADT/StringMap.h"
50 StringMap<Regex*> Entries;
H A DBlackList.cpp45 StringMap<std::string> Regexps;
74 for (StringMap<std::string>::iterator I = Regexps.begin(), E = Regexps.end();
/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"
65 StringMap<DIE*> GlobalTypes;
69 StringMap<std::vector<DIE*> > AccelNames;
70 StringMap<std::vector<DIE*> > AccelObjC;
71 StringMap<std::vector<DIE*> > AccelNamespace;
72 StringMap<std::vector<std::pair<DIE*, unsigned> > > AccelTypes;
90 const StringMap<DIE*> &getGlobalTypes() const { return GlobalTypes; }
92 const StringMap<std::vector<DIE*> > &getAccelNames() const {
95 const StringMap<std::vector<DIE*> > &getAccelObjC() const {
98 const StringMap<st
[all...]
/external/clang/include/clang/Frontend/
H A DLayoutOverrideSource.h14 #include "llvm/ADT/StringMap.h"
38 llvm::StringMap<Layout> Layouts;
/external/clang/include/clang/Basic/
H A DFileSystemStatCache.h20 #include "llvm/ADT/StringMap.h"
91 llvm::StringMap<struct stat, llvm::BumpPtrAllocator> StatCalls;
93 typedef llvm::StringMap<struct stat, llvm::BumpPtrAllocator>::const_iterator
H A DFileManager.h22 #include "llvm/ADT/StringMap.h"
77 // Add a default constructor for use with llvm::StringMap
143 llvm::StringMap<DirectoryEntry*, llvm::BumpPtrAllocator> SeenDirEntries;
149 llvm::StringMap<FileEntry*, llvm::BumpPtrAllocator> SeenFileEntries;
/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.h50 #include "llvm/ADT/StringMap.h"
96 StringMap<Operator*> Operators;
99 StringMap<Expander*> Expanders;
H A DStringToOffsetTable.h14 #include "llvm/ADT/StringMap.h"
26 StringMap<unsigned> StringOffset;
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageSourceCGWin.cpp52 typedef HashMap<String, String> StringMap; typedef
53 DEFINE_STATIC_LOCAL(StringMap, UTIMap, ());
/external/llvm/lib/Support/
H A DDynamicLibrary.cpp16 #include "llvm/ADT/StringMap.h"
25 static llvm::StringMap<void *> *ExplicitSymbols = 0;
49 ExplicitSymbols = new llvm::StringMap<void*>();
133 StringMap<void *>::iterator i = ExplicitSymbols->find(symbolName);
/external/clang/include/clang/Lex/
H A DModuleMap.h26 #include "llvm/ADT/StringMap.h"
54 llvm::StringMap<Module *> Modules;
231 typedef llvm::StringMap<Module *>::const_iterator module_iterator;
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.h21 #include "llvm/ADT/StringMap.h"
94 llvm::StringMap< std::vector<CompileCommandRef> > IndexByFile;
/external/llvm/include/llvm/
H A DValueSymbolTable.h18 #include "llvm/ADT/StringMap.h"
46 typedef StringMap<Value*> ValueMap;
/external/llvm/tools/lto/
H A DLTOCodeGenerator.h18 #include "llvm/ADT/StringMap.h"
66 typedef llvm::StringMap<uint8_t> StringSet;
/external/llvm/utils/FileCheck/
H A DFileCheck.cpp29 #include "llvm/ADT/StringMap.h"
88 /// The VariableTable StringMap provides the current values of filecheck
91 StringMap<StringRef> &VariableTable) const;
96 const StringMap<StringRef> &VariableTable) const;
106 const StringMap<StringRef> &VariableTable) const;
286 StringMap<StringRef> &VariableTable) const {
310 StringMap<StringRef>::iterator it =
351 const StringMap<StringRef> &VariableTable) const {
369 const StringMap<StringRef> &VariableTable) const{
375 StringMap<StringRe
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerRegistry.cpp44 const llvm::StringMap<size_t> &packageSizes,
66 llvm::StringMap<size_t>::const_iterator packageSize =

Completed in 287 milliseconds

12345