Home
last modified time | relevance | path

Searched refs:forStmt (Results 1 – 4 of 4) sorted by relevance

/minix/external/bsd/llvm/dist/clang/docs/
H A DLibASTMatchersTutorial.rst229 forStmt()
236 forStmt(hasLoopInit(declStmt(hasSingleDecl(varDecl()))))
243 forStmt(hasLoopInit(declStmt(hasSingleDecl(varDecl(
259 forStmt(hasLoopInit(declStmt(hasSingleDecl(varDecl(
278 forStmt(hasLoopInit(declStmt(hasSingleDecl(varDecl(
481 forStmt(hasLoopInit(declStmt(
/minix/external/bsd/llvm/dist/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp2548 EXPECT_TRUE(matches("void f() { for(;;); }", forStmt())); in TEST()
2552 forStmt())); in TEST()
2557 forStmt(hasCondition(anything())))); in TEST()
2559 forStmt(hasLoopInit(anything())))); in TEST()
2572 forStmt(hasCondition(expr())))); in TEST()
2574 forStmt(hasLoopInit(anything())))); in TEST()
2578 EXPECT_TRUE(notMatches("void f() { ; }", forStmt())); in TEST()
2599 forStmt(hasBody(compoundStmt())))); in TEST()
2601 forStmt(hasBody(compoundStmt())))); in TEST()
2615 compoundStmt(hasAnySubstatement(forStmt())))); in TEST()
[all …]
/minix/external/bsd/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp163 REGISTER_MATCHER(forStmt); in RegistryMaps()
/minix/external/bsd/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1101 const internal::VariadicDynCastAllOfMatcher<Stmt, ForStmt> forStmt; variable