Home
last modified time | relevance | path

Searched defs:DirectedGraph (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDirectedGraph.h183 explicit DirectedGraph(NodeType &N) : Nodes() { addNode(N); } in DirectedGraph() function
184 DirectedGraph(const DGraphType &G) : Nodes(G.Nodes) {} in DirectedGraph() function
185 DirectedGraph(DGraphType &&RHS) : Nodes(std::move(RHS.Nodes)) {} in DirectedGraph() function
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDDG.cpp31 template class llvm::DirectedGraph<DDGNode, DDGEdge>; member in llvm