HomeSort by relevance Sort by last modified time
    Searched refs:DeclarationMatcher (Results 1 - 6 of 6) sorted by null

  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp 23 DeclarationMatcher HasEmptyName = recordDecl(hasName(""));
30 DeclarationMatcher HasEmptyName = recordDecl(matchesName(""));
37 DeclarationMatcher IsDerivedFromEmpty = recordDecl(isDerivedFrom(""));
50 DeclarationMatcher NamedX = namedDecl(hasName("X"));
63 DeclarationMatcher NamedX = namedDecl(matchesName("::X"));
74 DeclarationMatcher StartsWithNo = namedDecl(matchesName("::no"));
78 DeclarationMatcher Abc = namedDecl(matchesName("a.*b.*c"));
84 DeclarationMatcher StartsWithK = namedDecl(matchesName(":k[^:]*$"));
92 TEST(DeclarationMatcher, MatchClass) {
93 DeclarationMatcher ClassMatcher(recordDecl())
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 120 void addMatcher(const DeclarationMatcher &NodeMatch,
ASTMatchers.h 110 typedef internal::Matcher<Decl> DeclarationMatcher;
124 /// Example: \c DeclarationMatcher(anything()) matches all declarations, e.g.,
    [all...]
  /external/clang/unittests/AST/
StmtPrinterTest.cpp 70 const DeclarationMatcher &NodeMatch,
DeclPrinterTest.cpp 71 const DeclarationMatcher &NodeMatch,
112 const DeclarationMatcher &NodeMatch,
135 const DeclarationMatcher &NodeMatch,
147 const DeclarationMatcher &NodeMatch,
    [all...]
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 711 void MatchFinder::addMatcher(const DeclarationMatcher &NodeMatch,

Completed in 45 milliseconds