Home
last modified time | relevance | path

Searched refs:methodDecl (Results 1 – 7 of 7) sorted by relevance

/external/clang/unittests/AST/
DASTContextParentMapTest.cpp31 methodDecl(hasParent(recordDecl(hasName("C")))))); in TEST()
45 methodDecl(hasName("f"), in TEST()
50 methodDecl(hasName("f"), in TEST()
55 methodDecl(hasName("f"), in TEST()
DDeclPrinterTest.cpp583 methodDecl(ofClass(hasName("A"))).bind("id"), in TEST()
592 methodDecl(ofClass(hasName("A"))).bind("id"), in TEST()
602 methodDecl(ofClass(hasName("A"))).bind("id"), in TEST()
612 methodDecl(ofClass(hasName("Z"))).bind("id"), in TEST()
623 methodDecl(ofClass(hasName("Z"))).bind("id"), in TEST()
633 methodDecl(ofClass(hasName("Z"))).bind("id"), in TEST()
643 methodDecl(ofClass(hasName("Z"))).bind("id"), in TEST()
653 methodDecl(ofClass(hasName("Z"))).bind("id"), in TEST()
681 methodDecl(ofClass(hasName("Z"))).bind("id"), in TEST()
705 methodDecl(ofClass(hasName("Z"))).bind("id"), in TEST()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp849 callExpr(callee(methodDecl(hasName("x")))).bind("x"); in TEST()
963 StatementMatcher MethodX = callExpr(hasDeclaration(methodDecl(hasName("x")))); in TEST()
1053 methodDecl(hasParameter(0, hasType(asString("int")))))); in TEST()
1312 StatementMatcher CallMethodX = callExpr(callee(methodDecl(hasName("x")))); in TEST()
1453 methodDecl(hasParameter(0, varDecl())))); in TEST()
1455 methodDecl(hasParameter(0, hasName("x"))))); in TEST()
1460 methodDecl(hasParameter(42, varDecl())))); in TEST()
1465 methodDecl(hasParameter(0, hasType(recordDecl(hasName("X"))))))); in TEST()
1467 methodDecl(hasParameter(0, hasType(recordDecl(hasName("X"))))))); in TEST()
1469 methodDecl(hasParameter(0, in TEST()
[all …]
/external/chromium_org/tools/clang/empty_string/
DEmptyStringConverter.cpp33 using clang::ast_matchers::methodDecl;
103 hasDeclaration(methodDecl(ofClass(hasName("std::basic_string")))), in SetupMatchers()
/external/chromium_org/tools/clang/rewrite_scoped_refptr/
DRewriteScopedRefptr.cpp320 anyOf(methodDecl(ofClass(recordDecl(isSameOrDerivedFrom( in main()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp255 REGISTER_MATCHER(methodDecl); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h556 const internal::VariadicDynCastAllOfMatcher<Decl, CXXMethodDecl> methodDecl; variable