Home | History | Annotate | Download | only in Sema

Lines Matching refs:SubStmt

437 void Sema::ActOnCaseStmtBody(Stmt *caseStmt, Stmt *SubStmt) {
438 DiagnoseUnusedExprResult(SubStmt);
441 CS->setSubStmt(SubStmt);
446 Stmt *SubStmt, Scope *CurScope) {
447 DiagnoseUnusedExprResult(SubStmt);
451 return SubStmt;
454 DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
461 SourceLocation ColonLoc, Stmt *SubStmt) {
466 return SubStmt;
470 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
485 Stmt *SubStmt) {
487 AttributedStmt *LS = AttributedStmt::Create(Context, AttrLoc, Attrs, SubStmt);
926 // substmt, but we have no way to do this right now.
1039 // substmt, but we have no way to do this right now.
1163 // to patch it up. Instead, just return the whole substmt as broken.