HomeSort by: relevance | last modified time | path
    Searched refs:addMatcher (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 33 // finder.AddMatcher(Id("id", record(hasName("::a_namespace::AClass"))),
55 /// calls to addMatcher(...).
58 /// that will trigger the callbacks specified via addMatcher(...) when a match
154 void addMatcher(const DeclarationMatcher &NodeMatch,
156 void addMatcher(const TypeMatcher &NodeMatch,
158 void addMatcher(const StatementMatcher &NodeMatch,
160 void addMatcher(const NestedNameSpecifierMatcher &NodeMatch,
162 void addMatcher(const NestedNameSpecifierLocMatcher &NodeMatch,
164 void addMatcher(const TypeLocMatcher &NodeMatch,
166 void addMatcher(const CXXCtorInitializerMatcher &NodeMatch
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
RefactoringCallbacks.h 20 // Finder.AddMatcher(id("integer", expression(integerLiteral())), Callback);
59 void addMatcher(const T &Matcher, RefactoringCallback *Callback) {
60 MatchFinder.addMatcher(Matcher, Callback);
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 1337 void MatchFinder::addMatcher(const DeclarationMatcher &NodeMatch,
1349 void MatchFinder::addMatcher(const TypeMatcher &NodeMatch,
1355 void MatchFinder::addMatcher(const StatementMatcher &NodeMatch,
1367 void MatchFinder::addMatcher(const NestedNameSpecifierMatcher &NodeMatch,
1373 void MatchFinder::addMatcher(const NestedNameSpecifierLocMatcher &NodeMatch,
1379 void MatchFinder::addMatcher(const TypeLocMatcher &NodeMatch,
1385 void MatchFinder::addMatcher(const CXXCtorInitializerMatcher &NodeMatch,
1391 void MatchFinder::addMatcher(const TemplateArgumentLocMatcher &NodeMatch,
1400 addMatcher(NodeMatch.convertTo<Decl>(), Action);
1403 addMatcher(NodeMatch.convertTo<QualType>(), Action)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
ConfigManager.cpp 357 if (Error E = Symbols.addMatcher(NameOrPattern::create(
875 if (Error E = Config.ToRemove.addMatcher(NameOrPattern::create(
879 if (Error E = Config.KeepSection.addMatcher(NameOrPattern::create(
883 if (Error E = Config.OnlySection.addMatcher(NameOrPattern::create(
932 if (Error E = Config.SymbolsToLocalize.addMatcher(NameOrPattern::create(
941 if (Error E = Config.SymbolsToKeepGlobal.addMatcher(NameOrPattern::create(
950 if (Error E = Config.SymbolsToGlobalize.addMatcher(NameOrPattern::create(
959 if (Error E = Config.SymbolsToWeaken.addMatcher(NameOrPattern::create(
968 if (Error E = Config.SymbolsToRemove.addMatcher(NameOrPattern::create(
978 Config.UnneededSymbolsToRemove.addMatcher(NameOrPattern::create
    [all...]
CommonConfig.h 129 Error addMatcher(Expected<NameOrPattern> Matcher) {
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
ASTSrcLocProcessor.cpp 25 Finder->addMatcher(
39 Finder->addMatcher(
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
NumberObjectConversionChecker.cpp 341 F.addMatcher(traverse(TK_AsIs, stmt(forEachDescendant(FinalM))), &CB);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
RewriteRule.cpp 244 MF->addMatcher(forEachDescendantDynamically<T>(Nodes, Matcher), this);
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
GlobalISelEmitter.cpp 696 bool addMatcher(Matcher &Candidate);
702 /// addMatcher(...)*; finalize(); optimize(); emit(...); and
703 /// addMatcher(...)*; finalize(); emit(...);
707 /// addMatcher(...)*; finalize(); { optimize()*; emit(...); }*
714 /// addMatcher() calls after the finalize() call are not supported.
772 bool addMatcher(Matcher &Candidate);
5507 if (CurrentGroup->addMatcher(*Rule))
5514 if (!CurrentGroup->addMatcher(*Rule))
6036 bool GroupMatcher::addMatcher(Matcher &Candidate) {
6129 bool SwitchMatcher::addMatcher(Matcher &Candidate)
    [all...]

Completed in 38 milliseconds