Searched refs:IsAX (Results 1 – 1 of 1) sorted by relevance
944 DeclarationMatcher IsAX = cxxRecordDecl(isSameOrDerivedFrom("X")); in TEST_P() local946 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() local1212 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 …]