Home | History | Annotate | Download | only in Dynamic

Lines Matching refs:RecordDecl

218                      specifiesType(hasDeclaration(recordDecl(hasName("A")))))))
235 constructMatcher("recordDecl", IsDefinition).getTypedMatcher<Decl>();
246 Matcher<Decl> RecordDecl = constructMatcher(
247 "recordDecl", constructMatcher("hasName", std::string("Foo")),
253 EXPECT_FALSE(matches("int Foo;", RecordDecl));
254 EXPECT_TRUE(matches("class Foo {};", RecordDecl));
255 EXPECT_FALSE(matches("void Foo(){};", RecordDecl));
316 "recordDecl",
319 constructMatcher("recordDecl",
348 constructMatcher("recordDecl",
359 "allOf", constructMatcher("recordDecl"),
373 D = recordDecl(
412 EXPECT_TRUE(constructMatcher("recordDecl", constructMatcher("recordDecl"),
428 "recordDecl",