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

References

tools/clang/include/clang/AST/Stmt.h
 1363   using body_const_range = llvm::iterator_range<const_body_iterator>;
 1369   const_body_iterator body_begin() const {
 1373   const_body_iterator body_end() const { return body_begin() + size(); }
 1394       std::reverse_iterator<const_body_iterator>;
tools/clang/lib/AST/ExprConstant.cpp
 7128     for (CompoundStmt::const_body_iterator BI = CS->body_begin(),
tools/clang/lib/CodeGen/CGStmt.cpp
 1409     CompoundStmt::const_body_iterator I = CS->body_begin(), E = CS->body_end();
tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
  437     CompoundStmt::const_body_iterator I1 = CompStmt1->body_begin();
  438     CompoundStmt::const_body_iterator I2 = CompStmt2->body_begin();
tools/clang/tools/extra/clang-tidy/readability/SimplifyBooleanExprCheck.cpp
  625   CompoundStmt::const_body_iterator Current = Compound->body_begin();
  626   CompoundStmt::const_body_iterator After = Compound->body_begin();
tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
   64   for (CompoundStmt::const_body_iterator bi = body_compound_stmt->body_begin(),