Lines Matching refs:ifStmt
490 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()
3646 compoundStmt(forEachDescendant(ifStmt().bind("if")), in TEST()
3714 has(compoundStmt(hasAnySubstatement(ifStmt())))), in TEST()
3740 ifStmt(stmt().bind("x"), hasAncestor(recordDecl(hasName("::A")))), in TEST()
4013 integerLiteral(equals(42), hasAncestor(ifStmt())))); in TEST()
4074 compoundStmt(hasParent(ifStmt())))); in TEST()
4077 compoundStmt(hasParent(ifStmt())))); in TEST()
4080 compoundStmt(hasParent(ifStmt())))); in TEST()
4697 "void f() { if (1) { for (;;) { } } }", ifStmt().bind("if"), in TEST()
4701 "void f() { if (1) { for (;;) { } } }", ifStmt().bind("if"), in TEST()
4762 "void f() { if (true) if(true) {} }", ifStmt().bind(""), in TEST()
4862 stmt(allOf(ifStmt().bind("if"), in TEST()
4867 stmt(allOf(ifStmt().bind("if"), has(stmt(equalsBoundNode("if"))))))); in TEST()