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(cxxBoolLiteral(equals(false))))), in TEST()
/external/clang/unittests/AST/
DASTContextParentMapTest.cpp38 ifStmt(hasParent(compoundStmt())))); in TEST()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp490 StatementMatcher MixedTypes = stmt(anyOf(ifStmt(), binaryOperator())); in TEST()
2380 ifStmt(hasCondition(cxxBoolLiteral(equals(true)))); in TEST()
2391 ifStmt(hasThen(cxxBoolLiteral(equals(true)))))); in TEST()
2393 ifStmt(hasThen(cxxBoolLiteral(equals(true)))))); in TEST()
2395 ifStmt(hasElse(cxxBoolLiteral(equals(true)))))); in TEST()
2397 ifStmt(hasElse(cxxBoolLiteral(equals(true)))))); in TEST()
3525 ifStmt(has(switchStmt(forEachSwitchCase(defaultStmt())))))); in TEST()
3569 ifStmt(hasConditionVariableStatement(declStmt())))); in TEST()
3572 ifStmt(hasConditionVariableStatement(declStmt())))); in TEST()
3578 ifStmt(hasConditionVariableStatement(declStmt())))); in TEST()
[all …]
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp252 REGISTER_MATCHER(ifStmt); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1209 const internal::VariadicDynCastAllOfMatcher<Stmt, IfStmt> ifStmt; variable