reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
357 switch (S->getStmtClass()) { 360 case Stmt::CompoundStmtClass: EmitCompoundStmt(cast<CompoundStmt>(*S)); break; 361 case Stmt::DeclStmtClass: EmitDeclStmt(cast<DeclStmt>(*S)); break; 362 case Stmt::LabelStmtClass: EmitLabelStmt(cast<LabelStmt>(*S)); break; 364 EmitAttributedStmt(cast<AttributedStmt>(*S)); break; 365 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break; 366 case Stmt::BreakStmtClass: EmitBreakStmt(cast<BreakStmt>(*S)); break; 367 case Stmt::ContinueStmtClass: EmitContinueStmt(cast<ContinueStmt>(*S)); break; 368 case Stmt::DefaultStmtClass: EmitDefaultStmt(cast<DefaultStmt>(*S)); break; 369 case Stmt::CaseStmtClass: EmitCaseStmt(cast<CaseStmt>(*S)); break; 370 case Stmt::SEHLeaveStmtClass: EmitSEHLeaveStmt(cast<SEHLeaveStmt>(*S)); break;