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

1234567

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/
H A DModelConsumer.h20 #include "llvm/ADT/StringMap.h"
30 /// This consumer collects the bodies of function definitions into a StringMap
34 ModelConsumer(llvm::StringMap<Stmt *> &Bodies);
39 llvm::StringMap<Stmt *> &Bodies;
H A DFrontendActions.h14 #include "llvm/ADT/StringMap.h"
40 /// parsed, the function definitions will be collected into a StringMap.
43 ParseModelFileAction(llvm::StringMap<Stmt *> &Bodies);
51 llvm::StringMap<Stmt *> &Bodies;
/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DSpecialCaseList.h51 #include "llvm/ADT/StringMap.h"
90 StringMap<StringMap<Entry>> Entries;
91 StringMap<StringMap<std::string>> Regexps;
H A DHost.h17 #include "llvm/ADT/StringMap.h"
70 bool getHostCPUFeatures(StringMap<bool> &Features);
/freebsd-11.0-release/contrib/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.
40 /// StringMapImpl - This is the base class of StringMap that is shared among
114 /// a StringMap. It contains the Value itself and the key: the string length
213 /// StringMap - This is an unconventional map that is specialized for handling
218 class StringMap : public StringMapImpl { class in namespace:llvm
224 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {} function in class:llvm::StringMap
225 explicit StringMap(unsigned InitialSize) function in class:llvm::StringMap
228 explicit StringMap(AllocatorTy A) function in class:llvm::StringMap
231 StringMap(unsigne function in class:llvm::StringMap
235 StringMap(std::initializer_list<std::pair<StringRef, ValueTy>> List) function in class:llvm::StringMap
242 StringMap(StringMap &&RHS) function in class:llvm::StringMap
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/AsmParser/
H A DSlotMapping.h17 #include "llvm/ADT/StringMap.h"
36 StringMap<Type *> NamedTypes;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/
H A DFrontendActions.cpp21 ParseModelFileAction::ParseModelFileAction(llvm::StringMap<Stmt *> &Bodies)
H A DModelConsumer.cpp29 ModelConsumer::ModelConsumer(llvm::StringMap<Stmt *> &Bodies)
H A DModelInjector.h29 #include "llvm/ADT/StringMap.h"
69 llvm::StringMap<Stmt *> Bodies;
/freebsd-11.0-release/contrib/llvm/include/llvm/ProfileData/
H A DInstrProfWriter.h32 StringMap<ProfilingData> FunctionData;
H A DSampleProfWriter.h42 std::error_code write(const StringMap<FunctionSamples> &ProfileMap) {
74 writeHeader(const StringMap<FunctionSamples> &ProfileMap) = 0;
90 writeHeader(const StringMap<FunctionSamples> &ProfileMap) override {
115 writeHeader(const StringMap<FunctionSamples> &ProfileMap) override;
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.h13 #include "llvm/ADT/StringMap.h"
30 StringMap<EntryTy, BumpPtrAllocator &> Pool;
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DLayoutOverrideSource.h15 #include "llvm/ADT/StringMap.h"
39 llvm::StringMap<Layout> Layouts;
/freebsd-11.0-release/contrib/llvm/include/llvm/TableGen/
H A DSetTheory.h52 #include "llvm/ADT/StringMap.h"
98 StringMap<std::unique_ptr<Operator>> Operators;
101 StringMap<std::unique_ptr<Expander>> Expanders;
/freebsd-11.0-release/contrib/llvm/lib/Object/
H A DRecordStreamer.h21 StringMap<State> Symbols;
28 typedef StringMap<State>::const_iterator const_iterator;
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DFunctionInfo.h20 #include "llvm/ADT/StringMap.h"
146 typedef StringMap<FunctionInfoList> FunctionInfoMapTy;
153 /// module ID assigned to each module during the plugin step. The StringMap
155 typedef StringMap<uint64_t> ModulePathStringTableTy;
197 iterator_range<StringMap<uint64_t>::const_iterator>
/freebsd-11.0-release/contrib/llvm/include/llvm/
H A DPassRegistry.h22 #include "llvm/ADT/StringMap.h"
47 typedef StringMap<const PassInfo *> StringMapType;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Tooling/
H A DFileMatchTrie.cpp15 #include "llvm/ADT/StringMap.h"
110 llvm::StringMap<FileMatchTrieNode>::const_iterator MatchingChild =
138 llvm::StringMap<FileMatchTrieNode>::const_iterator Except) const {
145 for (llvm::StringMap<FileMatchTrieNode>::const_iterator
159 llvm::StringMap<FileMatchTrieNode> Children;
/freebsd-11.0-release/contrib/llvm/lib/Target/X86/
H A DX86TargetMachine.h29 mutable StringMap<std::unique_ptr<X86Subtarget>> SubtargetMap;
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonTargetMachine.h28 mutable StringMap<std::unique_ptr<HexagonSubtarget>> SubtargetMap;
/freebsd-11.0-release/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetMachine.h26 mutable StringMap<std::unique_ptr<WebAssemblySubtarget>> SubtargetMap;
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DSpecialCaseList.cpp142 for (StringMap<StringMap<std::string>>::const_iterator I = Regexps.begin(),
145 for (StringMap<std::string>::const_iterator II = I->second.begin(),
160 StringMap<StringMap<Entry> >::const_iterator I = Entries.find(Section);
162 StringMap<Entry>::const_iterator II = I->second.find(Category);
H A DDynamicLibrary.cpp19 #include "llvm/ADT/StringMap.h"
27 static llvm::ManagedStatic<llvm::StringMap<void *> > ExplicitSymbols;
116 StringMap<void *>::iterator i = ExplicitSymbols->find(symbolName);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/
H A DGoLexer.h14 #include "llvm/ADT/StringMap.h"
190 static llvm::StringMap<TokenType> *InitKeywords();
192 static llvm::StringMap<TokenType> *m_keywords;

Completed in 166 milliseconds

1234567