Searched refs:accessSpecDecl (Results 1 – 9 of 9) sorted by relevance
/external/llvm-project/clang-tools-extra/clang-tidy/readability/ |
D | RedundantAccessSpecifiersCheck.cpp | 21 cxxRecordDecl(has(accessSpecDecl())).bind("redundant-access-specifiers"), in registerMatchers()
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersNarrowingTest.cpp | 922 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/ |
D | ASTMatchersNarrowingTest.cpp | 1460 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/ |
D | Registry.cpp | 97 REGISTER_MATCHER(accessSpecDecl); in RegistryMaps()
|
/external/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
D | Registry.cpp | 131 REGISTER_MATCHER(accessSpecDecl); in RegistryMaps()
|
/external/llvm-project/clang/lib/ASTMatchers/ |
D | ASTMatchersInternal.cpp | 750 accessSpecDecl; variable
|
/external/clang/lib/AST/ |
D | ASTImporter.cpp | 2442 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/ |
D | ASTMatchers.h | 426 AccessSpecDecl> accessSpecDecl; variable
|
/external/llvm-project/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 507 accessSpecDecl;
|