Lines Matching defs:bodyResult
1190 FailureOr<ast::CompoundStmt *> bodyResult = parseLambdaBody(
1202 if (failed(bodyResult))
1204 body = *bodyResult;
1206 FailureOr<ast::CompoundStmt *> bodyResult = parseCompoundStmt();
1207 if (failed(bodyResult))
1209 body = *bodyResult;
1253 FailureOr<ast::CompoundStmt *> bodyResult = parseLambdaBody(
1271 if (failed(bodyResult))
1273 body = *bodyResult;
1275 FailureOr<ast::CompoundStmt *> bodyResult = parseCompoundStmt();
1276 if (failed(bodyResult))
1278 body = *bodyResult;
1486 FailureOr<ast::CompoundStmt *> bodyResult = parsePatternLambdaBody();
1487 if (failed(bodyResult))
1489 body = *bodyResult;
1493 FailureOr<ast::CompoundStmt *> bodyResult = parseCompoundStmt();
1494 if (failed(bodyResult))
1496 body = *bodyResult;