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

  /external/clang/lib/AST/
Stmt.cpp 285 CompoundStmtBits.NumStmts = Stmts.size();
286 assert(CompoundStmtBits.NumStmts == Stmts.size() &&
287 "NumStmts doesn't fit in bits of CompoundStmtBits.NumStmts!");
301 CompoundStmtBits.NumStmts = Stmts.size();
302 assert(CompoundStmtBits.NumStmts == Stmts.size() &&
303 "NumStmts doesn't fit in bits of CompoundStmtBits.NumStmts!");
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 246 CompoundStmtBitfields CompoundStmtBits;
552 CompoundStmtBits.NumStmts = 0;
558 CompoundStmtBits.NumStmts = 0;
563 bool body_empty() const { return CompoundStmtBits.NumStmts == 0; }
564 unsigned size() const { return CompoundStmtBits.NumStmts; }
626 return child_range(Body, Body + CompoundStmtBits.NumStmts);
631 child_iterator(Body + CompoundStmtBits.NumStmts));
    [all...]

Completed in 48 milliseconds