Searched defs:ifStmt (Results 1 – 5 of 5) sorted by relevance
13 … IfStmt ifStmt = parseStatement("if (cond) doSomething(); else doSomethingElse();").asIfStmt(); in issue1247withElseSingleStmt() local21 … IfStmt ifStmt = parseStatement("if (cond) doSomething(); else { doSomethingElse(); }").asIfStmt(); in issue1247withElseBlockStmt() local29 …IfStmt ifStmt = parseStatement("if (cond1) doSomething(); else if (cond2) doSomethingElse();").asI… in issue1247withElseSingleStmtWhichIsAnIf() local
106 IfStatement& ifStmt = stmt->as<IfStatement>(); in eliminate_unreachable_code() local
67 IfStmt ifStmt = (IfStmt) ((BlockStmt) innerFor.getBody()).getStatement(4); in testConsistentMethodResultion() local
744 IfStatement& ifStmt = (*stmt)->as<IfStatement>(); in visitStatement() local
1384 const internal::VariadicDynCastAllOfMatcher<Stmt, IfStmt> ifStmt; variable