Lines Matching refs:CondExpr
8777 Expr *CondExpr, Expr *LHSExpr, in ActOnConditionalOp() argument
8783 ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr); in ActOnConditionalOp()
8798 CondExpr = CondResult.get(); in ActOnConditionalOp()
8808 commonExpr = CondExpr; in ActOnConditionalOp()
8847 LHSExpr = CondExpr = opaqueValue; in ActOnConditionalOp()
8853 ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr; in ActOnConditionalOp()
15356 Expr *CondExpr, in ActOnChooseExpr() argument
15359 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); in ActOnChooseExpr()
15365 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { in ActOnChooseExpr()
15371 CondExpr, &condEval, diag::err_typecheck_choose_expr_requires_constant); in ActOnChooseExpr()
15374 CondExpr = CondICE.get(); in ActOnChooseExpr()
15385 return new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, in ActOnChooseExpr()