Home
last modified time | relevance | path

Searched refs:StringMap (Results 1 – 25 of 202) sorted by relevance

123456789

/external/llvm/unittests/ADT/
DStringMapTest.cpp21 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/include/llvm/Support/
DSpecialCaseList.h90 StringMap<StringMap<Entry>> Entries;
91 StringMap<StringMap<std::string>> Regexps;
/external/llvm/include/llvm/ADT/
DStringMap.h218 class StringMap : public StringMapImpl {
224 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {} in StringMap() function
225 explicit StringMap(unsigned InitialSize) in StringMap() function
228 explicit StringMap(AllocatorTy A) in StringMap() function
231 StringMap(unsigned InitialSize, AllocatorTy A) in StringMap() function
235 StringMap(std::initializer_list<std::pair<StringRef, ValueTy>> List) in StringMap() function
242 StringMap(StringMap &&RHS) in StringMap() function
245 StringMap &operator=(StringMap RHS) {
385 ~StringMap() { in ~StringMap()
DStringSet.h23 class StringSet : public llvm::StringMap<char, AllocatorTy> {
24 typedef llvm::StringMap<char, AllocatorTy> base;
/external/llvm/lib/Support/
DSpecialCaseList.cpp142 for (StringMap<StringMap<std::string>>::const_iterator I = Regexps.begin(), in compile()
145 for (StringMap<std::string>::const_iterator II = I->second.begin(), in compile()
160 StringMap<StringMap<Entry> >::const_iterator I = Entries.find(Section); in inSection()
162 StringMap<Entry>::const_iterator II = I->second.find(Category); in inSection()
/external/llvm/include/llvm/ProfileData/
DSampleProfWriter.h42 std::error_code write(const StringMap<FunctionSamples> &ProfileMap) { in write()
74 writeHeader(const StringMap<FunctionSamples> &ProfileMap) = 0;
90 writeHeader(const StringMap<FunctionSamples> &ProfileMap) override { in writeHeader()
115 writeHeader(const StringMap<FunctionSamples> &ProfileMap) override;
/external/llvm/test/Transforms/GVN/
Dnonescaping-malloc.ll15 %"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 …2.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>", %"struct.llvm…
48 …4.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>", %"struct.llvm…
99 …5.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>", %"struct.llvm…
/external/clang/lib/Tooling/
DFileMatchTrie.cpp110 llvm::StringMap<FileMatchTrieNode>::const_iterator MatchingChild = in findEquivalent()
138 llvm::StringMap<FileMatchTrieNode>::const_iterator Except) const { in getAll()
145 for (llvm::StringMap<FileMatchTrieNode>::const_iterator in getAll()
159 llvm::StringMap<FileMatchTrieNode> Children;
/external/jetty/src/java/org/eclipse/jetty/io/
DBufferCache.java25 import org.eclipse.jetty.util.StringMap;
36 private final StringMap _stringMap=new StringMap(StringMap.CASE_INSENSTIVE);
/external/llvm/utils/FileCheck/
DFileCheck.cpp138 StringMap<StringRef> &VariableTable) const;
143 const StringMap<StringRef> &VariableTable) const;
158 const StringMap<StringRef> &VariableTable) const;
379 StringMap<StringRef> &VariableTable) const { in Match()
409 StringMap<StringRef>::iterator it = in Match()
449 const StringMap<StringRef> &VariableTable) const { in ComputeMatchDistance()
467 const StringMap<StringRef> &VariableTable) const{ in PrintFailureInfo()
486 StringMap<StringRef>::const_iterator it = VariableTable.find(Var); in PrintFailureInfo()
617 size_t &MatchLen, StringMap<StringRef> &VariableTable) const;
628 StringMap<StringRef> &VariableTable) const;
[all …]
/external/slf4j/integration/src/test/java/org/slf4j/test_osgi/
DFelixHost.java33 import org.apache.felix.framework.util.StringMap;
62 StringMap configMap = new StringMap(false); in doLaunch()
/external/clang/include/clang/StaticAnalyzer/Frontend/
DModelConsumer.h34 ModelConsumer(llvm::StringMap<Stmt *> &Bodies);
39 llvm::StringMap<Stmt *> &Bodies;
DFrontendActions.h43 ParseModelFileAction(llvm::StringMap<Stmt *> &Bodies);
51 llvm::StringMap<Stmt *> &Bodies;
/external/jetty/src/java/org/eclipse/jetty/http/
DPathMap.java30 import org.eclipse.jetty.util.StringMap;
82 final StringMap _prefixMap=new StringMap();
83 final StringMap _suffixMap=new StringMap();
84 final StringMap _exactMap=new StringMap();
/external/llvm/lib/Target/NVPTX/
DNVVMReflect.cpp50 StringMap<int> VarMap;
60 NVVMReflect(const StringMap<int> &Mapping) in NVVMReflect()
63 for (StringMap<int>::const_iterator I = Mapping.begin(), E = Mapping.end(); in NVVMReflect()
84 ModulePass *llvm::createNVVMReflectPass(const StringMap<int>& Mapping) { in createNVVMReflectPass()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.h49 StringMap<const DIE *> GlobalNames;
52 StringMap<const DIE *> GlobalTypes;
199 const StringMap<const DIE *> &getGlobalNames() const { return GlobalNames; } in getGlobalNames()
200 const StringMap<const DIE *> &getGlobalTypes() const { return GlobalTypes; } in getGlobalTypes()
/external/llvm/include/llvm/IR/
DFunctionInfo.h146 typedef StringMap<FunctionInfoList> FunctionInfoMapTy;
155 typedef StringMap<uint64_t> ModulePathStringTableTy;
197 iterator_range<StringMap<uint64_t>::const_iterator>
/external/llvm/lib/Object/
DRecordStreamer.h21 StringMap<State> Symbols;
28 typedef StringMap<State>::const_iterator const_iterator;
/external/llvm/include/llvm/TableGen/
DSetTheory.h98 StringMap<std::unique_ptr<Operator>> Operators;
101 StringMap<std::unique_ptr<Expander>> Expanders;
/external/llvm/lib/IR/
DModule.cpp52 NamedMDSymTab = new StringMap<NamedMDNode *>(); in Module()
64 delete static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab); in ~Module()
259 return static_cast<StringMap<NamedMDNode*> *>(NamedMDSymTab)->lookup(NameRef); in getNamedMetadata()
267 (*static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab))[Name]; in getOrInsertNamedMetadata()
279 static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab)->erase(NMD->getName()); in eraseNamedMetadata()
/external/llvm/include/llvm/MC/
DMCContext.h54 typedef StringMap<MCSymbol *, BumpPtrAllocator &> SymbolTable;
96 StringMap<bool, BumpPtrAllocator &> UsedNames;
100 StringMap<unsigned> NextID;
206 StringMap<MCSectionMachO *> MachOUniquingMap;
209 StringMap<bool> ELFRelSecNames;
/external/clang/lib/Driver/
DMultilib.cpp100 llvm::StringMap<int> FlagSet; in isValid()
103 llvm::StringMap<int>::iterator SI = FlagSet.find(Flag.substr(1)); in isValid()
246 llvm::StringMap<bool> FlagSet; in select()
255 llvm::StringMap<bool>::const_iterator SI = FlagSet.find(Flag.substr(1)); in select()
/external/webrtc/webrtc/p2p/client/
Dhttpportallocator.cc39 typedef std::map<std::string, std::string> StringMap; typedef
40 void ParseMap(const std::string& string, StringMap& map) { in ParseMap()
180 StringMap map; in ReceiveSessionResponse()
/external/clang/include/clang/Frontend/
DPCHContainerOperations.h93 llvm::StringMap<std::unique_ptr<PCHContainerWriter>> Writers;
94 llvm::StringMap<std::unique_ptr<PCHContainerReader>> Readers;
/external/clang/include/clang/Basic/
DFileSystemStatCache.h116 llvm::StringMap<FileData, llvm::BumpPtrAllocator> StatCalls;
118 typedef llvm::StringMap<FileData, llvm::BumpPtrAllocator>::const_iterator

123456789