Home
last modified time | relevance | path

Searched refs:DirectedGraph (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDirectedGraph.h173 template <class NodeType, class EdgeType> class DirectedGraph {
180 using DGraphType = DirectedGraph<NodeType, EdgeType>;
182 DirectedGraph() = default;
183 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
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDDG.h30 using DDGBase = DirectedGraph<DDGNode, DDGEdge>;