Home | History | Annotate | Download | only in ASTMatchers

Lines Matching full:findall

3507 TEST(FindAll, BindsNodeOnMatch) {
3510 recordDecl(hasName("::A"), findAll(recordDecl(hasName("::A")).bind("v"))),
3514 TEST(FindAll, BindsDescendantNodeOnMatch) {
3517 recordDecl(hasName("::A"), findAll(fieldDecl().bind("v"))),
3521 TEST(FindAll, BindsNodeAndDescendantNodesOnOneMatch) {
3525 findAll(decl(anyOf(recordDecl(hasName("::A")).bind("v"),
3531 recordDecl(hasName("::A"), findAll(recordDecl(isDefinition()).bind("v"))),