Lines Matching refs:CondExpr
8613 Expr *CondExpr, Expr *LHSExpr, in ActOnConditionalOp() argument
8619 ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr); in ActOnConditionalOp()
8634 CondExpr = CondResult.get(); in ActOnConditionalOp()
8644 commonExpr = CondExpr; in ActOnConditionalOp()
8683 LHSExpr = CondExpr = opaqueValue; in ActOnConditionalOp()
8689 ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr; in ActOnConditionalOp()
15116 Expr *CondExpr, in ActOnChooseExpr() argument
15119 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); in ActOnChooseExpr()
15125 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { in ActOnChooseExpr()
15131 CondExpr, &condEval, diag::err_typecheck_choose_expr_requires_constant); in ActOnChooseExpr()
15134 CondExpr = CondICE.get(); in ActOnChooseExpr()
15145 return new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, in ActOnChooseExpr()