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

References

tools/clang/include/clang/AST/Stmt.h
 1169   using const_child_range = llvm::iterator_range<const_child_iterator>;
 1181   const_child_iterator child_begin() const { return children().begin(); }
 1182   const_child_iterator child_end() const { return children().end(); }
tools/clang/include/clang/AST/StmtGraphTraits.h
   51   using ChildIteratorType = clang::Stmt::const_child_iterator;
tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
  332     Expr::const_child_iterator I1 = Expr1->child_begin();
  333     Expr::const_child_iterator I2 = Expr2->child_begin();
tools/clang/tools/extra/clang-tidy/misc/RedundantExpressionCheck.cpp
   70   Expr::const_child_iterator LeftIter = Left->child_begin();
   71   Expr::const_child_iterator RightIter = Right->child_begin();