Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:findAll

2976 TEST(FindAll, BindsNodeOnMatch) {
2979 recordDecl(hasName("::A"), findAll(recordDecl(hasName("::A")).bind("v"))),
2983 TEST(FindAll, BindsDescendantNodeOnMatch) {
2986 recordDecl(hasName("::A"), findAll(fieldDecl().bind("v"))),
2990 TEST(FindAll, BindsNodeAndDescendantNodesOnOneMatch) {
2994 findAll(decl(anyOf(recordDecl(hasName("::A")).bind("v"),
3000 recordDecl(hasName("::A"), findAll(recordDecl(isDefinition()).bind("v"))),