Home
last modified time | relevance | path

Searched refs:CondResult (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/Sema/
DSemaStmt.cpp377 ExprResult CondResult(CondVal.release()); in ActOnIfStmt() local
382 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true); in ActOnIfStmt()
383 if (CondResult.isInvalid()) in ActOnIfStmt()
386 Expr *ConditionExpr = CondResult.takeAs<Expr>(); in ActOnIfStmt()
507 ExprResult CondResult; in ActOnStartOfSwitchStmt() local
512 CondResult = CheckConditionVariable(ConditionVar, SourceLocation(), false); in ActOnStartOfSwitchStmt()
513 if (CondResult.isInvalid()) in ActOnStartOfSwitchStmt()
516 Cond = CondResult.release(); in ActOnStartOfSwitchStmt()
522 CondResult in ActOnStartOfSwitchStmt()
533 if (CondResult.isInvalid()) return StmtError(); in ActOnStartOfSwitchStmt()
[all …]
DSemaChecking.cpp3581 bool CondResult; in GetExprRange() local
3582 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C)) in GetExprRange()
3583 return GetExprRange(C, CondResult ? CO->getTrueExpr() in GetExprRange()
/external/clang/lib/AST/
DExprConstant.cpp6784 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx); in CheckICE() local
6785 if (CondResult.Val == 2) in CheckICE()
6786 return CondResult; in CheckICE()
6795 if (CondResult.Val == 1) in CheckICE()
6796 return CondResult; in CheckICE()