Searched defs:DirectedGraph (Results 1 – 2 of 2) sorted by relevance
183 explicit DirectedGraph(NodeType &N) : Nodes() { addNode(N); } in DirectedGraph() function184 DirectedGraph(const DGraphType &G) : Nodes(G.Nodes) {} in DirectedGraph() function185 DirectedGraph(DGraphType &&RHS) : Nodes(std::move(RHS.Nodes)) {} in DirectedGraph() function
31 template class llvm::DirectedGraph<DDGNode, DDGEdge>; member in llvm