Home
last modified time | relevance | path

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

/external/clang/unittests/Tooling/
DRefactoringCallbacksTest.cpp84 id("id", ifStmt( in TEST()
95 id("id", ifStmt(hasCondition(boolLiteral(equals(false))))), in TEST()
/external/clang/unittests/AST/
DASTContextParentMapTest.cpp37 ifStmt(hasParent(compoundStmt())))); in TEST()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp1882 StatementMatcher Condition = ifStmt(hasCondition(boolLiteral(equals(true)))); in TEST()
2971 ifStmt(has(switchStmt(forEachSwitchCase(defaultStmt())))))); in TEST()
3006 ifStmt(hasConditionVariableStatement(declStmt())))); in TEST()
3009 ifStmt(hasConditionVariableStatement(declStmt())))); in TEST()
3015 ifStmt(hasConditionVariableStatement(declStmt())))); in TEST()
3083 compoundStmt(forEachDescendant(ifStmt().bind("if")), in TEST()
3151 has(compoundStmt(hasAnySubstatement(ifStmt())))), in TEST()
3177 ifStmt(stmt().bind("x"), hasAncestor(recordDecl(hasName("::A")))), in TEST()
3394 integerLiteral(equals(42), hasAncestor(ifStmt())))); in TEST()
3455 compoundStmt(hasParent(ifStmt())))); in TEST()
[all …]
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp307 REGISTER_MATCHER(ifStmt); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h824 const internal::VariadicDynCastAllOfMatcher<Stmt, IfStmt> ifStmt; variable