Lines Matching refs:accessSpecDecl
1517 EXPECT_TRUE(matches("class C { public: int i; };", accessSpecDecl()));
1519 matches("class C { public: int i; };", accessSpecDecl(isPublic())));
1521 notMatches("class C { public: int i; };", accessSpecDecl(isProtected())));
1523 notMatches("class C { public: int i; };", accessSpecDecl(isPrivate())));
1525 EXPECT_TRUE(notMatches("class C { int i; };", accessSpecDecl()));