Lines Matching defs:replExpr
2406 FailureOr<ast::Expr *> replExpr = parseExpr();
2407 if (failed(replExpr))
2409 replValues.emplace_back(*replExpr);
2418 FailureOr<ast::Expr *> replExpr;
2420 replExpr = parseOperationExpr(OpResultTypeContext::Replacement);
2422 replExpr = parseExpr();
2423 if (failed(replExpr))
2425 replValues.emplace_back(*replExpr);
3085 for (ast::Expr *&replExpr : replValues) {
3086 ast::Type replType = replExpr->getType();
3088 // Check that replExpr is an Operation, Value, or ValueRange.
3091 replExpr = convertOpToValue(replExpr);
3096 return emitError(replExpr->getLoc(),