HomeSort by relevance Sort by last modified time
    Searched refs:CompoundStmtBits (Results 1 - 2 of 2) sorted by null

  /external/clang/include/clang/AST/
Stmt.h 294 CompoundStmtBitfields CompoundStmtBits;
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);
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 258 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;
    [all...]

Completed in 47 milliseconds