Lines Matching refs:result
194 bool result = INHERITED::visitStatement(stmt);
203 return result;
468 StatementArray result;
469 result.reserve_back(block.children().size());
471 result.push_back(stmt(child));
473 return result;
541 // inside an Block's scope, we don't need to store the result in a variable at all. Just
549 // For more complex functions, assign their result into a variable.
593 auto result = VarDeclaration::Make(*fContext,
599 return result;
644 // Create a variable to hold the result in the extra statements. We don't need to do this
646 // the function-call node with the result expression.
700 // Return our result expression as-is.
703 // It's a void function, so it doesn't actually result in anything, but we have to return
707 // It's a non-void function, but it never created a result expression--that is, it never