Home
last modified time | relevance | path

Searched refs:constructorDecl (Results 1 – 6 of 6) sorted by relevance

/external/clang/unittests/AST/
DDeclPrinterTest.cpp414 constructorDecl(ofClass(hasName("A"))).bind("id"), in TEST()
423 constructorDecl(ofClass(hasName("A"))).bind("id"), in TEST()
432 constructorDecl(ofClass(hasName("A"))).bind("id"), in TEST()
441 constructorDecl(ofClass(hasName("A"))).bind("id"), in TEST()
450 constructorDecl(ofClass(hasName("A"))).bind("id"), in TEST()
459 constructorDecl(ofClass(hasName("A"))).bind("id"), in TEST()
468 constructorDecl(ofClass(hasName("A"))).bind("id"), in TEST()
478 constructorDecl(ofClass(hasName("A"))).bind("id"), in TEST()
487 constructorDecl(ofClass(hasName("A"))).bind("id"), in TEST()
497 constructorDecl(ofClass(hasName("A"))).bind("id"), in TEST()
[all …]
/external/chromium_org/tools/clang/rewrite_scoped_ptr_ctor_null/
DRewriteScopedPtrCtorNull.cpp22 using clang::ast_matchers::constructorDecl;
119 match_finder->addMatcher(constructorDecl(forEach(constructor_call)), in SetupMatchers()
/external/chromium_org/tools/clang/empty_string/
DEmptyStringConverter.cpp22 using clang::ast_matchers::constructorDecl;
117 constructorDecl(forEach(expr(has(constructor_call)))), in SetupMatchers()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp1686 constructorDecl(ofClass(hasName("Foo"))))); in TEST()
1688 constructorDecl(ofClass(hasName("Bar"))))); in TEST()
1695 constructorDecl(isImplicit()))); in TEST()
1698 constructorDecl(isImplicit()))); in TEST()
1700 constructorDecl(unless(isImplicit())))); in TEST()
1716 constructorDecl(hasAnyConstructorInitializer(anything())))); in TEST()
1722 constructorDecl(hasAnyConstructorInitializer(anything())))); in TEST()
1733 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer( in TEST()
1735 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer( in TEST()
1737 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer( in TEST()
[all …]
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp236 REGISTER_MATCHER(constructorDecl); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h470 CXXConstructorDecl> constructorDecl; variable