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

References

include/llvm/ADT/GraphTraits.h
  120 iterator_range<typename GraphTraits<GraphType>::ChildIteratorType>
  121 children(const typename GraphTraits<GraphType>::NodeRef &G) {
  122   return make_range(GraphTraits<GraphType>::child_begin(G),
  123                     GraphTraits<GraphType>::child_end(G));
  127 iterator_range<typename GraphTraits<Inverse<GraphType>>::ChildIteratorType>
  129   return make_range(GraphTraits<Inverse<GraphType>>::child_begin(G),
  130                     GraphTraits<Inverse<GraphType>>::child_end(G));
tools/clang/include/clang/Analysis/CFG.h
 1556   : public GraphTraits<Inverse< ::clang::CFGBlock *>> {