Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaStmt.cpp493 ExprResult CondResult(CondVal.release()); in ActOnIfStmt() local
498 CondResult = CheckConditionVariable(ConditionVar, IfLoc, true); in ActOnIfStmt()
499 CondResult = ActOnFinishFullExpr(CondResult.get(), IfLoc); in ActOnIfStmt()
500 if (CondResult.isInvalid()) in ActOnIfStmt()
503 Expr *ConditionExpr = CondResult.getAs<Expr>(); in ActOnIfStmt()
582 ExprResult CondResult; in ActOnStartOfSwitchStmt() local
587 CondResult = CheckConditionVariable(ConditionVar, SourceLocation(), false); in ActOnStartOfSwitchStmt()
588 if (CondResult.isInvalid()) in ActOnStartOfSwitchStmt()
591 Cond = CondResult.get(); in ActOnStartOfSwitchStmt()
644 CondResult = in ActOnStartOfSwitchStmt()
[all …]
HDSemaChecking.cpp6076 bool CondResult; in GetExprRange() local
6077 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C)) in GetExprRange()
6078 return GetExprRange(C, CondResult ? CO->getTrueExpr() in GetExprRange()
HDSemaExpr.cpp6486 ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr); in ActOnConditionalOp() local
6487 if (!CondResult.isUsable()) return ExprError(); in ActOnConditionalOp()
6488 CondExpr = CondResult.get(); in ActOnConditionalOp()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDExprConstant.cpp9004 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx); in CheckICE() local
9005 if (CondResult.Kind == IK_NotICE) in CheckICE()
9006 return CondResult; in CheckICE()
9015 if (CondResult.Kind == IK_ICEIfUnevaluated) in CheckICE()
9016 return CondResult; in CheckICE()