Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp944 DeclarationMatcher IsAX = cxxRecordDecl(isSameOrDerivedFrom("X")); in TEST_P() local
946 EXPECT_TRUE(matches("class X {}; class Y : public X {};", IsAX)); in TEST_P()
947 EXPECT_TRUE(matches("class X {};", IsAX)); in TEST_P()
948 EXPECT_TRUE(matches("class X;", IsAX)); in TEST_P()
949 EXPECT_TRUE(notMatches("class Y;", IsAX)); in TEST_P()
950 EXPECT_TRUE(notMatches("", IsAX)); in TEST_P()
1210 DeclarationMatcher IsAX = objcInterfaceDecl(isSameOrDerivedFrom("X")); in TEST_P() local
1212 EXPECT_TRUE(matchesObjC("@interface X @end", IsAX)); in TEST_P()
1213 EXPECT_TRUE(matchesObjC("@class X;", IsAX)); in TEST_P()
1214 EXPECT_TRUE(notMatchesObjC("@interface Y @end", IsAX)); in TEST_P()
[all …]