Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:accessSpecDecl

922   EXPECT_TRUE(matches("class C { public: int i; };", accessSpecDecl()));
924 matches("class C { public: int i; };", accessSpecDecl(isPublic())));
926 notMatches("class C { public: int i; };", accessSpecDecl(isProtected())));
928 notMatches("class C { public: int i; };", accessSpecDecl(isPrivate())));
930 EXPECT_TRUE(notMatches("class C { int i; };", accessSpecDecl()));