Searched defs:DirectedGraph (Results 1 – 4 of 4) sorted by relevance
176 explicit DirectedGraph(NodeType &N) : Nodes() { addNode(N); } in DirectedGraph() function177 DirectedGraph(const DGraphType &G) : Nodes(G.Nodes) {} in DirectedGraph() function178 DirectedGraph(DGraphType &&RHS) : Nodes(std::move(RHS.Nodes)) {} in DirectedGraph() function
13 pub trait DirectedGraph { trait
3 impl<'graph, G: DirectedGraph> DirectedGraph for &'graph G { impl
27 template class llvm::DirectedGraph<DDGNode, DDGEdge>; member in llvm