Home
last modified time | relevance | path

Searched refs:declStmt (Results 1 – 5 of 5) sorted by relevance

/minix/external/bsd/llvm/dist/clang/unittests/Tooling/
H A DRefactoringCallbacksTest.cpp43 expectRewritten(Code, Expected, id("id", declStmt()), Callback); in TEST()
50 expectRewritten(Code, Expected, id("id", declStmt()), Callback); in TEST()
57 expectRewritten(Code, Expected, id("id", declStmt()), Callback); in TEST()
/minix/external/bsd/llvm/dist/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp3118 EXPECT_TRUE(notMatches("void x() {}", declStmt())); in TEST()
3122 EXPECT_TRUE(matches("void x() { int a; }", declStmt())); in TEST()
3195 declStmt(containsDeclaration(WrongIndex, in TEST()
3201 declStmt(declCountIs(2)))); in TEST()
3203 declStmt(declCountIs(3)))); in TEST()
3205 declStmt(declCountIs(3)))); in TEST()
3281 ifStmt(hasConditionVariableStatement(declStmt())))); in TEST()
3284 ifStmt(hasConditionVariableStatement(declStmt())))); in TEST()
3290 ifStmt(hasConditionVariableStatement(declStmt())))); in TEST()
3617 declStmt(isInTemplateInstantiation()))); in TEST()
[all …]
/minix/external/bsd/llvm/dist/clang/docs/
H A DLibASTMatchersTutorial.rst236 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/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp138 REGISTER_MATCHER(declStmt); in RegistryMaps()
/minix/external/bsd/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h817 DeclStmt> declStmt; variable