Home | History | Annotate | Download | only in AST

Lines Matching refs:NumStmts

258   CompoundStmtBits.NumStmts = Stmts.size();
259 assert(CompoundStmtBits.NumStmts == Stmts.size() &&
260 "NumStmts doesn't fit in bits of CompoundStmtBits.NumStmts!");
272 unsigned NumStmts) {
275 this->CompoundStmtBits.NumStmts = NumStmts;
277 Body = new (C) Stmt*[NumStmts];
278 memcpy(Body, Stmts, sizeof(Stmt *) * NumStmts);