Searched refs:NodeMatch (Results 1 – 5 of 5) sorted by relevance
/external/clang/lib/ASTMatchers/ |
D | ASTMatchFinder.cpp | 901 void MatchFinder::addMatcher(const DeclarationMatcher &NodeMatch, in addMatcher() argument 903 Matchers.DeclOrStmt.emplace_back(NodeMatch, Action); in addMatcher() 907 void MatchFinder::addMatcher(const TypeMatcher &NodeMatch, in addMatcher() argument 909 Matchers.Type.emplace_back(NodeMatch, Action); in addMatcher() 913 void MatchFinder::addMatcher(const StatementMatcher &NodeMatch, in addMatcher() argument 915 Matchers.DeclOrStmt.emplace_back(NodeMatch, Action); in addMatcher() 919 void MatchFinder::addMatcher(const NestedNameSpecifierMatcher &NodeMatch, in addMatcher() argument 921 Matchers.NestedNameSpecifier.emplace_back(NodeMatch, Action); in addMatcher() 925 void MatchFinder::addMatcher(const NestedNameSpecifierLocMatcher &NodeMatch, in addMatcher() argument 927 Matchers.NestedNameSpecifierLoc.emplace_back(NodeMatch, Action); in addMatcher() [all …]
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchFinder.h | 149 void addMatcher(const DeclarationMatcher &NodeMatch, 151 void addMatcher(const TypeMatcher &NodeMatch, 153 void addMatcher(const StatementMatcher &NodeMatch, 155 void addMatcher(const NestedNameSpecifierMatcher &NodeMatch, 157 void addMatcher(const NestedNameSpecifierLocMatcher &NodeMatch, 159 void addMatcher(const TypeLocMatcher &NodeMatch, 171 bool addDynamicMatcher(const internal::DynTypedMatcher &NodeMatch,
|
/external/clang/unittests/AST/ |
D | StmtPrinterTest.cpp | 71 const T &NodeMatch, StringRef ExpectedPrinted) { in PrintedStmtMatches() argument 75 Finder.addMatcher(NodeMatch, &Printer); in PrintedStmtMatches() 101 PrintedStmtCXX98Matches(StringRef Code, const StatementMatcher &NodeMatch, in PrintedStmtCXX98Matches() argument 106 return PrintedStmtMatches(Code, Args, NodeMatch, ExpectedPrinted); in PrintedStmtCXX98Matches() 124 PrintedStmtCXX11Matches(StringRef Code, const StatementMatcher &NodeMatch, in PrintedStmtCXX11Matches() argument 129 return PrintedStmtMatches(Code, Args, NodeMatch, ExpectedPrinted); in PrintedStmtCXX11Matches()
|
D | DeclPrinterTest.cpp | 71 const DeclarationMatcher &NodeMatch, in PrintedDeclMatches() argument 76 Finder.addMatcher(NodeMatch, &Printer); in PrintedDeclMatches() 114 const DeclarationMatcher &NodeMatch, in PrintedDeclCXX98Matches() argument 119 NodeMatch, in PrintedDeclCXX98Matches() 137 const DeclarationMatcher &NodeMatch, in PrintedDeclCXX11Matches() argument 142 NodeMatch, in PrintedDeclCXX11Matches() 149 const DeclarationMatcher &NodeMatch, in PrintedDeclCXX11nonMSCMatches() argument 155 NodeMatch, in PrintedDeclCXX11nonMSCMatches() 161 PrintedDeclCXX1ZMatches(StringRef Code, const DeclarationMatcher &NodeMatch, in PrintedDeclCXX1ZMatches() argument 166 NodeMatch, in PrintedDeclCXX1ZMatches() [all …]
|
D | NamedDeclPrinterTest.cpp | 66 const DeclarationMatcher &NodeMatch, in PrintedNamedDeclMatches() argument 70 Finder.addMatcher(NodeMatch, &Printer); in PrintedNamedDeclMatches()
|