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

References

include/llvm/ADT/BreadthFirstIterator.h
   48     : public std::iterator<std::forward_iterator_tag, typename GT::NodeRef>,
   50   using super = std::iterator<std::forward_iterator_tag, typename GT::NodeRef>;
   52   using NodeRef = typename GT::NodeRef;
include/llvm/ADT/DepthFirstIterator.h
   86     : public std::iterator<std::forward_iterator_tag, typename GT::NodeRef>,
   88   using super = std::iterator<std::forward_iterator_tag, typename GT::NodeRef>;
   89   using NodeRef = typename GT::NodeRef;
include/llvm/ADT/SCCIterator.h
   44                          const std::vector<typename GT::NodeRef>, ptrdiff_t> {
   45   using NodeRef = typename GT::NodeRef;
unittests/ADT/TestGraph.h
  239   static NodeRef getEntryNode(const Graph<N> &G) { return G.AccessNode(0); }
  240   static ChildIteratorType child_begin(NodeRef Node) {
  243   static ChildIteratorType child_end(NodeRef Node) {