Lines Matching refs:Body
855 Stmt *Body = Ctor->getBody(Definition); in EmitConstructorBody() local
860 bool IsTryBody = (Body && isa<CXXTryStmt>(Body)); in EmitConstructorBody()
862 EnterCXXTryStmt(*cast<CXXTryStmt>(Body), true); in EmitConstructorBody()
864 incrementProfileCounter(Body); in EmitConstructorBody()
877 EmitStmt(cast<CXXTryStmt>(Body)->getTryBlock()); in EmitConstructorBody()
878 else if (Body) in EmitConstructorBody()
879 EmitStmt(Body); in EmitConstructorBody()
888 ExitCXXTryStmt(*cast<CXXTryStmt>(Body), true); in EmitConstructorBody()
1457 Stmt *Body = Dtor->getBody(); in EmitDestructorBody() local
1458 if (Body) in EmitDestructorBody()
1459 incrementProfileCounter(Body); in EmitDestructorBody()
1478 bool isTryBody = (Body && isa<CXXTryStmt>(Body)); in EmitDestructorBody()
1480 EnterCXXTryStmt(*cast<CXXTryStmt>(Body), true); in EmitDestructorBody()
1496 assert((Body || getTarget().getCXXABI().isMicrosoft()) && in EmitDestructorBody()
1513 assert(Body); in EmitDestructorBody()
1529 EmitStmt(cast<CXXTryStmt>(Body)->getTryBlock()); in EmitDestructorBody()
1530 else if (Body) in EmitDestructorBody()
1531 EmitStmt(Body); in EmitDestructorBody()
1549 ExitCXXTryStmt(*cast<CXXTryStmt>(Body), true); in EmitDestructorBody()