Home
last modified time | relevance | path

Searched refs:forEachDescendant (Results 1 – 3 of 3) sorted by relevance

/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp805 functionDecl(forEachDescendant( in TEST()
821 qualType(asString("int ***"), forEachDescendant(pointerType().bind("x"))), in TEST()
3347 forEachDescendant(fieldDecl(hasName("x")).bind("x"))), in TEST()
3356 recordDecl(hasName("A"), anyOf(m, forEachDescendant(m))), in TEST()
3372 recordDecl(hasName("C"), forEachDescendant(fieldDecl().bind("f"))), in TEST()
3380 recordDecl(hasName("C"), forEachDescendant(recordDecl( in TEST()
3381 forEachDescendant(fieldDecl().bind("f"))))), in TEST()
3389 compoundStmt(forEachDescendant(ifStmt().bind("if")), in TEST()
3390 forEachDescendant(whileStmt().bind("while"))), in TEST()
3424 anyOf(forEachDescendant(recordDecl(hasName("Y"))), anything())), in TEST()
[all …]
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp159 REGISTER_MATCHER(forEachDescendant); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1917 LLVM_ATTRIBUTE_UNUSED forEachDescendant = {}; variable
1936 return eachOf(Matcher, forEachDescendant(Matcher)); in findAll()