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

References

include/llvm/ADT/GraphTraits.h
  134 iterator_range<typename GraphTraits<GraphType>::ChildEdgeIteratorType>
  135 children_edges(const typename GraphTraits<GraphType>::NodeRef &G) {
  136   return make_range(GraphTraits<GraphType>::child_edge_begin(G),
  137                     GraphTraits<GraphType>::child_edge_end(G));
include/llvm/Analysis/SyntheticCountsUtils.h
   33   using CGT = GraphTraits<CallGraphType>;
unittests/Analysis/CallGraphTest.cpp
   19   typedef typename GraphTraits<Ty *>::NodeRef NodeRef;
   21   auto I = GraphTraits<Ty *>::nodes_begin(G);
   22   auto E = GraphTraits<Ty *>::nodes_end(G);
   33   NodeRef N = GraphTraits<Ty *>::getEntryNode(G);