Searched refs:replExpr (Results 1 – 2 of 2) sorted by relevance
2369 FailureOr<ast::Expr *> replExpr = parseExpr(); in parseReplaceStmt() local2370 if (failed(replExpr)) in parseReplaceStmt()2372 replValues.emplace_back(*replExpr); in parseReplaceStmt()2381 FailureOr<ast::Expr *> replExpr; in parseReplaceStmt() local2385 replExpr = parseExpr(); in parseReplaceStmt()2386 if (failed(replExpr)) in parseReplaceStmt()2388 replValues.emplace_back(*replExpr); in parseReplaceStmt()3010 for (ast::Expr *&replExpr : replValues) { in createReplaceStmt()3011 ast::Type replType = replExpr->getType(); in createReplaceStmt()3016 replExpr = convertOpToValue(replExpr); in createReplaceStmt()[all …]
233 for (ast::Expr *replExpr : stmt->getReplExprs()) in genImpl()234 replValues.push_back(genSingleExpr(replExpr)); in genImpl()