Lines Matching refs:recordDecl
84 DeclarationMatcher ClassMatcher(recordDecl()); in TEST()
91 DeclarationMatcher ClassX = recordDecl(recordDecl(hasName("X"))); in TEST()
202 cxxMemberCallExpr(on(hasType(recordDecl(hasName("Y"))))); in TEST()
221 cxxMemberCallExpr(on(hasType(pointsTo(recordDecl(hasName("Y")))))); in TEST()
327 cxxMemberCallExpr(thisPointerType(recordDecl(hasName("Y")))); in TEST()
359 cxxMemberCallExpr(thisPointerType(recordDecl(hasName("Y")))))))); in TEST()
1009 initListExpr(hasType(recordDecl(hasName("B")))))); in TEST()
1333 recordType(hasDeclaration(recordDecl(hasName("S")))))); in TEST()
1335 recordType(hasDeclaration(recordDecl(hasName("S")))))); in TEST()
1392 specifiesType(hasDeclaration(recordDecl(hasName("A"))))); in TEST()
1460 "class X { class Y {}; };", recordDecl(hasName("::X::Y")).bind(""), in TEST()