Home | History | Annotate | Download | only in Frontend

Lines Matching refs:Body

210           // Under modern abi, we cannot translate body of the function
1862 // Insert all these *after* the statement body.
2057 Stmt *body = finalStmt->getFinallyBody();
2058 SourceLocation startFinalBodyLoc = body->getLocStart();
2063 SourceLocation endFinalBodyLoc = body->getLocEnd();
5637 // Function Body / Expression rewriting
5682 // Rewrite the block body in place.
5912 if (CompoundStmt *Body = dyn_cast_or_null<CompoundStmt>(FD->getBody())) {
5914 CurrentBody = Body;
5915 Body =
5916 cast_or_null<CompoundStmt>(RewriteFunctionBodyOrGlobalInitializer(Body));
5917 FD->setBody(Body);
5933 if (CompoundStmt *Body = MD->getCompoundBody()) {
5935 CurrentBody = Body;
5936 Body =
5937 cast_or_null<CompoundStmt>(RewriteFunctionBodyOrGlobalInitializer(Body));
5938 MD->setBody(Body);