Home | History | Annotate | Download | only in AST

Lines Matching refs:Stmts

62   llvm::errs() << "  " << sum << " stmts/exprs total.\n";
183 void CompoundStmt::setStmts(ASTContext &C, Stmt **Stmts, unsigned NumStmts) {
189 memcpy(Body, Stmts, sizeof(Stmt *) * NumStmts);
506 Stmt **Stmts = getStmts();
507 Stmts[0] = atTryStmt;
509 Stmts[I + 1] = CatchStmts[I];
512 Stmts[NumCatchStmts + 1] = atFinallyStmt;
571 Stmt **Stmts = reinterpret_cast<Stmt **>(this + 1);
572 Stmts[0] = tryBlock;
573 std::copy(handlers, handlers + NumHandlers, Stmts + 1);