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::__anon17518
559 CompoundStmtBits.NumStmts = 0;
565 CompoundStmtBits.NumStmts = 0;
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);
/external/clang/lib/AST/
H A DStmt.cpp258 CompoundStmtBits.NumStmts = Stmts.size();
259 assert(CompoundStmtBits.NumStmts == Stmts.size() &&
260 "NumStmts doesn't fit in bits of CompoundStmtBits.NumStmts!");
275 this->CompoundStmtBits.NumStmts = NumStmts;

Completed in 777 milliseconds