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

References

tools/clang/include/clang/AST/Stmt.h
 1366     return body_const_range(body_begin(), body_end());
 1397     return const_reverse_body_iterator(body_end());
 1438     return const_child_range(body_begin(), body_end());
tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 4441                                           CS->body_end(), Finder, Builder);
tools/clang/lib/AST/ExprConstant.cpp
 7129                                            BE = CS->body_end();
tools/clang/lib/CodeGen/CGStmt.cpp
 1409     CompoundStmt::const_body_iterator I = CS->body_begin(), E = CS->body_end();
tools/clang/lib/Sema/SemaOpenMP.cpp
 8884       while (I != CS->body_end()) {
 8894       assert(I != CS->body_end() && "Not found statement");
tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
  439     while (I1 != CompStmt1->body_end() && I2 != CompStmt2->body_end()) {
  439     while (I1 != CompStmt1->body_end() && I2 != CompStmt2->body_end()) {
tools/clang/tools/extra/clang-tidy/readability/SimplifyBooleanExprCheck.cpp
  627   for (++After; After != Compound->body_end() && *Current != Ret;