Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:TypeA

892   TypeMatcher TypeA = hasDeclaration(recordDecl(hasName("A")));
894 EXPECT_TRUE(matches("class A { public: A *a; };", TypeA));
895 EXPECT_TRUE(notMatches("class A {};", TypeA));
901 EXPECT_TRUE(notMatches("class A {};", TypeA));