/llvm-project/mlir/lib/Tools/PDLL/CodeGen/ |
H A D | CPPGen.cpp | 46 StringSet<> &nativeFunctions); 52 StringSet<> &nativeFunctions); 54 StringSet<> &nativeFunctions); 55 void generate(const ast::UserRewriteDecl *decl, StringSet<> &nativeFunctions); 58 StringSet<> &nativeFunctions); 72 SetVector<std::string, SmallVector<std::string>, StringSet<>> patternNames; in generate() 73 StringSet<> nativeFunctions; in generate() 107 StringSet<> &nativeFunctions) { in generate() 121 StringSet<> registeredNativeFunctions; in generate() 140 StringSet<> &nativeFunctions) { in generateConstraintAndRewrites() [all …]
|
/llvm-project/clang/test/SemaCXX/ |
H A D | template-default-param-through-using.cpp | 4 template<typename T > struct StringSet; 11 using llvm::StringSet; 17 template<typename T > struct StringSet; 23 template<typename T = int> struct StringSet{}; struct 30 StringSet<> s;
|
/llvm-project/llvm/unittests/ADT/ |
H A D | StringSetTest.cpp | 20 StringSet<> Set; in TEST_F() 36 StringSet<> Set; in TEST_F() 48 StringSet<> Set; in TEST_F() 58 StringSet<> Set; in TEST_F() 77 StringSet<> A = {"A"}; in TEST_F() 78 StringSet<> B = {"B"}; in TEST_F()
|
/llvm-project/lld/COFF/ |
H A D | MinGW.h | 17 #include "llvm/ADT/StringSet.h" 34 llvm::StringSet<> excludeSymbols; 35 llvm::StringSet<> excludeSymbolPrefixes; 36 llvm::StringSet<> excludeSymbolSuffixes; 37 llvm::StringSet<> excludeLibs; 38 llvm::StringSet<> excludeObjects;
|
/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringSet.h | 23 class StringSet : public StringMap<std::nullopt_t, AllocatorTy> { 27 StringSet() = default; 28 StringSet(std::initializer_list<StringRef> initializer) { in StringSet() function 32 template <typename Container> explicit StringSet(Container &&C) { in StringSet() function 36 explicit StringSet(AllocatorTy a) : Base(a) {} in StringSet() function
|
/llvm-project/llvm/utils/TableGen/ |
H A D | ARMTargetDefEmitter.cpp |
|
/llvm-project/llvm/lib/LTO/ |
H A D | UpdateCompilerUsed.cpp | 29 PreserveLibCallsAndAsmUsed(const StringSet<> &AsmUndefinedRefs, in PreserveLibCallsAndAsmUsed() 46 const StringSet<> &AsmUndefinedRefs; 51 StringSet<> Libcalls; 124 const StringSet<> &AsmUndefinedRefs) { in updateCompilerUsed()
|
/llvm-project/clang-tools-extra/clang-tidy/utils/ |
H A D | ExceptionAnalyzer.h | 15 #include "llvm/ADT/StringSet.h" 83 filterIgnoredExceptions(const llvm::StringSet<> &IgnoredTypes, 121 void ignoreExceptions(llvm::StringSet<> ExceptionNames) { in ignoreExceptions() 143 llvm::StringSet<> IgnoredExceptions;
|
/llvm-project/clang-tools-extra/clang-tidy/modernize/ |
H A D | TypeTraitsCheck.cpp | 18 static const llvm::StringSet<> ValueTraits = { 105 static const llvm::StringSet<> TypeTraits = { 196 const llvm::StringSet<> &Set) { in isNamedDeclInStdTraitsSet() 202 const llvm::StringSet<> &Set) { in checkTemplatedDecl()
|
/llvm-project/llvm/include/llvm/Linker/ |
H A D | Linker.h | 45 std::function<void(Module &, const StringSet<> &)> 50 std::function<void(Module &, const StringSet<> &)>
|
/llvm-project/llvm/tools/llvm-jitlink/ |
H A D | llvm-jitlink.h | 16 #include "llvm/ADT/StringSet.h" 134 StringSet<> HarnessFiles; 135 StringSet<> HarnessExternals; 136 StringSet<> HarnessDefinitions;
|
/llvm-project/lld/wasm/ |
H A D | Config.h | 14 #include "llvm/ADT/StringSet.h" 61 llvm::StringSet<> keepSections; 119 llvm::StringSet<> allowUndefinedSymbols; 120 llvm::StringSet<> exportedSymbols;
|
/llvm-project/lldb/include/lldb/Utility/ |
H A D | TildeExpressionResolver.h | 48 llvm::StringSet<> &Output) = 0; 60 bool ResolvePartial(llvm::StringRef Expr, llvm::StringSet<> &Output) override;
|
/llvm-project/bolt/include/bolt/Profile/ |
H A D | ProfileReaderBase.h | 75 virtual StringSet<> getEventNames() const { return StringSet<>(); } in getEventNames()
|
/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/ |
H A D | Markup.h | 53 MarkupParser(StringSet<> MultilineTags = {}); 95 const StringSet<> MultilineTags;
|
/llvm-project/mlir/lib/Dialect/Polynomial/IR/ |
H A D | PolynomialAttributes.cpp | 15 #include "llvm/ADT/StringSet.h" 106 llvm::StringSet<> &variables, in parsePolynomialAttr() 155 llvm::StringSet<> variables; in parse() 182 llvm::StringSet<> variables; in parse()
|
/llvm-project/clang/lib/Driver/ |
H A D | Multilib.cpp | 63 llvm::StringSet<> MyFlags; in operator ==() 223 llvm::StringSet<> FlagSet(expandFlags(FlagsWithCustom)); 273 llvm::StringSet<> in validate() 275 llvm::StringSet<> Result; in validate()
|
/llvm-project/clang-tools-extra/clang-tidy/ |
H A D | ClangTidyDiagnosticConsumer.h | 19 #include "llvm/ADT/StringSet.h" 225 void setOptionsCollector(llvm::StringSet<> *Collector) { in getOptionsCollector() 228 llvm::StringSet<> *getOptionsCollector() const { return OptionsCollector; } 263 llvm::StringSet<> *OptionsCollector = nullptr;
|
H A D | ClangTidy.h | 14 #include "llvm/ADT/StringSet.h" 62 llvm::StringSet<> Checks; 63 llvm::StringSet<> Options;
|
/llvm-project/mlir/include/mlir/Support/ |
H A D | LLVM.h | 76 class StringSet; variable 133 using StringSet = llvm::StringSet<AllocatorTy>; variable
|
/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
H A D | ExceptionEscapeCheck.cpp | 14 #include "llvm/ADT/StringSet.h" 21 AST_MATCHER_P(FunctionDecl, isEnabled, llvm::StringSet<>, in AST_MATCHER_P() argument 49 llvm::StringSet<> IgnoredExceptions; in ExceptionEscapeCheck()
|
/llvm-project/clang/lib/APINotes/ |
H A D | APINotesYAMLCompiler.cpp | 21 #include "llvm/ADT/StringSet.h" 894 llvm::StringSet<> KnownInstanceProperties; in convertTopLevelItems() 895 llvm::StringSet<> KnownClassProperties; in convertTopLevelItems() 1065 llvm::StringSet<> KnownClasses; in convertTopLevelItems() 1078 llvm::StringSet<> KnownProtocols; in convertModule() 1091 llvm::StringSet<> KnownNamespaces; in compile() 1104 llvm::StringSet<> KnownGlobals; in compileAPINotes() 1119 llvm::StringSet<> KnownFunctions; 1134 llvm::StringSet<> KnownEnumConstants; 1151 llvm::StringSet<> KnownTag [all...] |
/llvm-project/llvm/include/llvm/LTO/legacy/ |
H A D | LTOCodeGenerator.h | 233 StringSet<> MustPreserveSymbols; 234 StringSet<> AsmUndefinedRefs;
|
/llvm-project/clang/include/clang/Frontend/ |
H A D | Utils.h | 96 llvm::StringSet<> Seen; 139 llvm::StringSet<> Seen;
|
/llvm-project/llvm/tools/llvm-objdump/ |
H A D | llvm-objdump.h | 12 #include "llvm/ADT/StringSet.h" 73 extern StringSet<> FoundSectionSet; 77 StringSet<> Warnings;
|