Searched refs:NumStmts (Results 1 - 4 of 4) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp295 unsigned NumStmts = 0; local
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;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp285 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!");
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h93 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));
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp135 unsigned NumStmts = Record[Idx++]; local
136 while (NumStmts--)

Completed in 98 milliseconds