reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
18 typedef bf_iterator<Graph<4>> BFIter; 20 Graph<4> G; 43 typedef bf_iterator<Graph<4>> BFIter; 45 Graph<4> G;unittests/ADT/DepthFirstIteratorTest.cpp
41 typedef CountedSet<Graph<3>::NodeType *> StorageT; 42 typedef df_iterator<Graph<3>, StorageT, true> DFIter; 44 Graph<3> G;unittests/ADT/SCCIteratorTest.cpp
24 typedef Graph<NUM_NODES> GT;
unittests/ADT/TestGraph.h28 Graph(const Graph&); 29 Graph& operator=(const Graph&); 29 Graph& operator=(const Graph&); 235 struct GraphTraits<Graph<N> > { 236 typedef typename Graph<N>::NodeType *NodeRef; 237 typedef typename Graph<N>::ChildIterator ChildIteratorType; 239 static NodeRef getEntryNode(const Graph<N> &G) { return G.AccessNode(0); } 241 return Graph<N>::child_begin(Node); 244 return Graph<N>::child_end(Node);