Home | History | Annotate | Download | only in AST

Lines Matching refs:NumStmts

138     unsigned NumStmts : 32 - NumStmtBits;
559 CompoundStmtBits.NumStmts = 0;
565 CompoundStmtBits.NumStmts = 0;
568 void setStmts(const ASTContext &C, Stmt **Stmts, unsigned NumStmts);
570 bool body_empty() const { return CompoundStmtBits.NumStmts == 0; }
571 unsigned size() const { return CompoundStmtBits.NumStmts; }
631 return child_range(Body, Body + CompoundStmtBits.NumStmts);
635 return child_range(Body, Body + CompoundStmtBits.NumStmts);