Lines Matching refs:CondExpr
9114 Expr *CondExpr, Expr *LHSExpr, in ActOnConditionalOp() argument
9120 ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr); in ActOnConditionalOp()
9135 CondExpr = CondResult.get(); in ActOnConditionalOp()
9145 commonExpr = CondExpr; in ActOnConditionalOp()
9184 LHSExpr = CondExpr = opaqueValue; in ActOnConditionalOp()
9190 ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr; in ActOnConditionalOp()
16124 Expr *CondExpr, in ActOnChooseExpr() argument
16127 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); in ActOnChooseExpr()
16133 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { in ActOnChooseExpr()
16139 CondExpr, &condEval, diag::err_typecheck_choose_expr_requires_constant); in ActOnChooseExpr()
16142 CondExpr = CondICE.get(); in ActOnChooseExpr()
16153 return new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, in ActOnChooseExpr()