Home
last modified time | relevance | path

Searched refs:accessSpecDecl (Results 1 – 9 of 9) sorted by relevance

/external/llvm-project/clang-tools-extra/clang-tidy/readability/
DRedundantAccessSpecifiersCheck.cpp21 cxxRecordDecl(has(accessSpecDecl())).bind("redundant-access-specifiers"), in registerMatchers()
/external/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp922 EXPECT_TRUE(matches("class C { public: int i; };", accessSpecDecl())); in TEST()
924 matches("class C { public: int i; };", accessSpecDecl(isPublic()))); in TEST()
926 notMatches("class C { public: int i; };", accessSpecDecl(isProtected()))); in TEST()
928 notMatches("class C { public: int i; };", accessSpecDecl(isPrivate()))); in TEST()
930 EXPECT_TRUE(notMatches("class C { int i; };", accessSpecDecl())); in TEST()
/external/llvm-project/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp1460 EXPECT_TRUE(matches("class C { public: int i; };", accessSpecDecl())); in TEST_P()
1462 matches("class C { public: int i; };", accessSpecDecl(isPublic()))); in TEST_P()
1464 notMatches("class C { public: int i; };", accessSpecDecl(isProtected()))); in TEST_P()
1466 notMatches("class C { public: int i; };", accessSpecDecl(isPrivate()))); in TEST_P()
1468 EXPECT_TRUE(notMatches("class C { int i; };", accessSpecDecl())); in TEST_P()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp97 REGISTER_MATCHER(accessSpecDecl); in RegistryMaps()
/external/llvm-project/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp131 REGISTER_MATCHER(accessSpecDecl); in RegistryMaps()
/external/llvm-project/clang/lib/ASTMatchers/
DASTMatchersInternal.cpp750 accessSpecDecl; variable
/external/clang/lib/AST/
DASTImporter.cpp2442 AccessSpecDecl *accessSpecDecl in VisitAccessSpecDecl() local
2446 if (!accessSpecDecl) in VisitAccessSpecDecl()
2451 accessSpecDecl->setLexicalDeclContext(DC); in VisitAccessSpecDecl()
2452 DC->addDeclInternal(accessSpecDecl); in VisitAccessSpecDecl()
2454 return accessSpecDecl; in VisitAccessSpecDecl()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h426 AccessSpecDecl> accessSpecDecl; variable
/external/llvm-project/clang/include/clang/ASTMatchers/
DASTMatchers.h507 accessSpecDecl;