Lines Matching refs:CondExpr
9360 Expr *CondExpr, Expr *LHSExpr, in ActOnConditionalOp() argument
9366 ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr); in ActOnConditionalOp()
9381 CondExpr = CondResult.get(); in ActOnConditionalOp()
9391 commonExpr = CondExpr; in ActOnConditionalOp()
9430 LHSExpr = CondExpr = opaqueValue; in ActOnConditionalOp()
9436 ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr; in ActOnConditionalOp()
16392 Expr *CondExpr, in ActOnChooseExpr() argument
16395 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); in ActOnChooseExpr()
16401 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { in ActOnChooseExpr()
16407 CondExpr, &condEval, diag::err_typecheck_choose_expr_requires_constant); in ActOnChooseExpr()
16410 CondExpr = CondICE.get(); in ActOnChooseExpr()
16421 return new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, in ActOnChooseExpr()