Searched refs:CompoundStmtBits (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/AST/
H A DStmt.h294 CompoundStmtBitfields CompoundStmtBits; member in union:clang::Stmt::__anon15827
551 CompoundStmtBits.NumStmts = 0;
557 CompoundStmtBits.NumStmts = 0;
562 bool body_empty() const { return CompoundStmtBits.NumStmts == 0; }
563 unsigned size() const { return CompoundStmtBits.NumStmts; }
613 return child_range(&Body[0], &Body[0]+CompoundStmtBits.NumStmts);
617 return child_range(&Body[0], &Body[0]+CompoundStmtBits.NumStmts);
/external/clang/lib/AST/
H A DStmt.cpp259 CompoundStmtBits.NumStmts = Stmts.size();
260 assert(CompoundStmtBits.NumStmts == Stmts.size() &&
261 "NumStmts doesn't fit in bits of CompoundStmtBits.NumStmts!");
275 this->CompoundStmtBits.NumStmts = NumStmts;

Completed in 47 milliseconds