HomeSort by relevance Sort by last modified time
    Searched refs:StringMap (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /external/llvm/include/llvm/ADT/
StringSet.h 10 // 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;
StringMap.h 1 //===--- StringMap.h - String Hash table map interface ----------*- C++ -*-===//
10 // This file defines the StringMap class.
30 /// various datatypes in a stringmap to allow them to be initialized when an
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
223 /// StringMap - This is an unconventional map that is specialized for handling
228 class StringMap : public StringMapImpl {
233 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {}
234 explicit StringMap(unsigned InitialSize)
237 explicit StringMap(AllocatorTy A
    [all...]
  /external/llvm/lib/Analysis/
LibCallSemantics.cpp 17 #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.
  /frameworks/rs/driver/linkloader/include/
ELFSectionHeaderTable.h 23 #include <llvm/ADT/StringMap.h>
35 llvm::StringMap<ELFSectionHeaderTy *> name_map;
ELFSectionSymTab.h 22 #include <llvm/ADT/StringMap.h>
34 llvm::StringMap<ELFSymbolTy *> name_map;
  /external/llvm/include/llvm/Support/
Host.h 17 #include "llvm/ADT/StringMap.h"
66 bool getHostCPUFeatures(StringMap<bool> &Features);
StringPool.h 32 #include "llvm/ADT/StringMap.h"
56 typedef StringMap<PooledString> table_t;
  /external/llvm/include/llvm/Transforms/Utils/
BlackList.h 32 #include "llvm/ADT/StringMap.h"
53 StringMap<Regex*> Entries;
  /external/chromium/chrome/browser/importer/
mork_reader.h 117 typedef std::map<IDString, std::string> StringMap;
129 StringMap* map);
151 StringMap value_map_;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 20 #include "llvm/ADT/StringMap.h"
69 StringMap<DIE*> GlobalNames;
73 StringMap<DIE*> GlobalTypes;
77 StringMap<std::vector<DIE*> > AccelNames;
78 StringMap<std::vector<DIE*> > AccelObjC;
79 StringMap<std::vector<DIE*> > AccelNamespace;
80 StringMap<std::vector<std::pair<DIE*, unsigned> > > AccelTypes;
110 const StringMap<DIE*> &getGlobalNames() const { return GlobalNames; }
111 const StringMap<DIE*> &getGlobalTypes() const { return GlobalTypes; }
113 const StringMap<std::vector<DIE*> > &getAccelNames() const
    [all...]
  /external/clang/include/clang/Frontend/
LayoutOverrideSource.h 15 #include "llvm/ADT/StringMap.h"
39 llvm::StringMap<Layout> Layouts;
  /frameworks/compile/slang/
slang_rs_export_element.h 24 #include "llvm/ADT/StringMap.h"
49 typedef llvm::StringMap<const ElementInfo*> ElementInfoMapTy;
  /external/clang/include/clang/Basic/
FileSystemStatCache.h 20 #include "llvm/ADT/StringMap.h"
92 llvm::StringMap<struct stat, llvm::BumpPtrAllocator> StatCalls;
94 typedef llvm::StringMap<struct stat, llvm::BumpPtrAllocator>::const_iterator
  /external/llvm/unittests/ADT/
StringMapTest.cpp 1 //===- 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_t>::value_type::Create
    [all...]
  /external/llvm/utils/TableGen/
SetTheory.h 51 #include "llvm/ADT/StringMap.h"
98 StringMap<Operator*> Operators;
101 StringMap<Expander*> Expanders;
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageSourceCGWin.cpp 52 typedef HashMap<String, String> StringMap;
53 DEFINE_STATIC_LOCAL(StringMap, UTIMap, ());
  /external/llvm/lib/Support/
DynamicLibrary.cpp 18 #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/llvm/lib/Transforms/Instrumentation/
BlackList.cpp 45 StringMap<std::string> Regexps;
81 for (StringMap<std::string>::const_iterator I = Regexps.begin(),
118 StringMap<Regex*>::const_iterator I = Entries.find(Section);
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 15 #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/clang/include/clang/Lex/
ModuleMap.h 25 #include "llvm/ADT/StringMap.h"
56 llvm::StringMap<Module *> Modules;
302 typedef llvm::StringMap<Module *>::const_iterator module_iterator;
Pragma.h 18 #include "llvm/ADT/StringMap.h"
93 llvm::StringMap<PragmaHandler*> Handlers;
  /external/llvm/tools/lto/
LTOModule.h 19 #include "llvm/ADT/StringMap.h"
41 typedef llvm::StringMap<uint8_t> StringSet;
56 llvm::StringMap<NameAndAttributes> _undefines;
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerRegistry.h 128 mutable llvm::StringMap<size_t> Packages;
  /external/clang/include/clang/Tooling/
JSONCompilationDatabase.h 22 #include "llvm/ADT/StringMap.h"
103 llvm::StringMap< std::vector<CompileCommandRef> > IndexByFile;
  /external/llvm/include/llvm/IR/
ValueSymbolTable.h 17 #include "llvm/ADT/StringMap.h"
46 typedef StringMap<Value*> ValueMap;

Completed in 555 milliseconds

1 2 3 4 5 6