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

  /external/clang/include/clang/AST/
Stmt.h 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);
    [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!");
272 unsigned NumStmts) {
275 this->CompoundStmtBits.NumStmts = NumStmts;
277 Body = new (C) Stmt*[NumStmts];
278 memcpy(Body, Stmts, sizeof(Stmt *) * NumStmts);
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 134 unsigned NumStmts = Record[Idx++];
135 while (NumStmts--)
    [all...]

Completed in 212 milliseconds