reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/Stmt.h
 1355   body_iterator body_end() { return body_begin() + size(); }
 1359     return !body_empty() ? body_begin()[size() - 1] : nullptr;
 1373   const_body_iterator body_end() const { return body_begin() + size(); }
 1380     return !body_empty() ? body_begin()[size() - 1] : nullptr;
tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 4455   return Node.size() == N;
tools/clang/lib/AST/ASTImporter.cpp
 5749   SmallVector<Stmt *, 8> ToStmts(S->size());
tools/clang/lib/AST/Stmt.cpp
  142       if (CS->size() != 1)
tools/clang/lib/Analysis/CloneDetection.cpp
   27   assert(EndIndex <= Stmt->size() && "Given array too big for this Stmt");
  274     for (unsigned Pos = 0; Pos < CS->size(); ++Pos) {
  279       for (unsigned Length = 1; Length <= CS->size() - Pos; ++Length) {
tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
 2620                                          ? CGF.Builder.getInt32(CS->size() - 1)
 2655                                    ExitBB, CS == nullptr ? 1 : CS->size());
tools/clang/lib/Sema/SemaOpenMP.cpp
 8697         if (CS->size() == 2) {
tools/clang/lib/Serialization/ASTWriterStmt.cpp
   82   Record.push_back(S->size());
tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
  162     if (CompStmt->size() == 1)
  166     if (CompStmt->size() == 1)
  434     if (CompStmt1->size() != CompStmt2->size())
  434     if (CompStmt1->size() != CompStmt2->size())
tools/clang/tools/extra/clang-tidy/modernize/UseEqualsDefaultCheck.cpp
  187   return Compound->size() == BasesToInit.size() + FieldsToInit.size() + 1;
tools/clang/tools/extra/clang-tidy/readability/MisleadingIndentationCheck.cpp
   59   for (unsigned int i = 0; i < CStmt->size() - 1; i++) {
tools/clang/tools/extra/clang-tidy/readability/SimplifyBooleanExprCheck.cpp
  289     if (Compound->size() == 1) {
  623   assert(Compound->size() >= 2);