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));
include/llvm/Analysis/BlockFrequencyInfoImpl.h
  850   using Successor = GraphTraits<const BlockT *>;
 1262   using Successor = GraphTraits<const BlockT *>;
 1321     for (auto SI = GraphTraits<const BlockT *>::child_begin(BB),
 1322               SE = GraphTraits<const BlockT *>::child_end(BB);
include/llvm/CodeGen/MachineFunction.h
 1041   public GraphTraits<const MachineBasicBlock*> {