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.cpp1985 StatementMatcher Condition = ifStmt(hasCondition(boolLiteral(equals(true)))); in TEST()
1996 ifStmt(hasThen(boolLiteral(equals(true)))))); in TEST()
1998 ifStmt(hasThen(boolLiteral(equals(true)))))); in TEST()
2000 ifStmt(hasElse(boolLiteral(equals(true)))))); in TEST()
2002 ifStmt(hasElse(boolLiteral(equals(true)))))); in TEST()
3104 ifStmt(has(switchStmt(forEachSwitchCase(defaultStmt())))))); in TEST()
3139 ifStmt(hasConditionVariableStatement(declStmt())))); in TEST()
3142 ifStmt(hasConditionVariableStatement(declStmt())))); in TEST()
3148 ifStmt(hasConditionVariableStatement(declStmt())))); in TEST()
3216 compoundStmt(forEachDescendant(ifStmt().bind("if")), in TEST()
[all …]
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp220 REGISTER_MATCHER(ifStmt); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h890 const internal::VariadicDynCastAllOfMatcher<Stmt, IfStmt> ifStmt; variable