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

  /external/clang/lib/Format/
UnwrappedLineFormatter.cpp 295 unsigned NumStmts = 0;
298 for (; NumStmts < 3; ++NumStmts) {
299 if (I + 1 + NumStmts == E)
301 const AnnotatedLine *Line = I[1 + NumStmts];
310 Length += I[1 + NumStmts]->Last->TotalLength + 1; // 1 for the space.
312 if (NumStmts == 0 || NumStmts == 3 || Length > Limit)
314 return NumStmts;
    [all...]
  /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 93 unsigned NumStmts : 32 - NumStmtBits;
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...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 134 unsigned NumStmts = Record[Idx++];
135 while (NumStmts--)
    [all...]

Completed in 89 milliseconds