reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
  469     accessSpecDecl;

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  125   REGISTER_MATCHER(accessSpecDecl);
tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.cpp
 1114   EXPECT_TRUE(matches("class C { public: int i; };", accessSpecDecl()));
 1116       matches("class C { public: int i; };", accessSpecDecl(isPublic())));
 1118       notMatches("class C { public: int i; };", accessSpecDecl(isProtected())));
 1120       notMatches("class C { public: int i; };", accessSpecDecl(isPrivate())));
 1122   EXPECT_TRUE(notMatches("class C { int i; };", accessSpecDecl()));