Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DDirectedGraph.h172 template <class NodeType, class EdgeType> class DirectedGraph {
179 using DGraphType = DirectedGraph<NodeType, EdgeType>;
181 DirectedGraph() = default;
182 explicit DirectedGraph(NodeType &N) : Nodes() { addNode(N); } in DirectedGraph() function
183 DirectedGraph(const DGraphType &G) : Nodes(G.Nodes) {} in DirectedGraph() function
184 DirectedGraph(DGraphType &&RHS) : Nodes(std::move(RHS.Nodes)) {} in DirectedGraph() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DDDG.cpp32 template class llvm::DirectedGraph<DDGNode, DDGEdge>; member in llvm
/netbsd-src/external/apache2/llvm/dist/llvm/docs/DependenceGraphs/
H A Dindex.rst72 ``DirectedGraph`` class. Each implementation extends its corresponding
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DDDG.h28 using DDGBase = DirectedGraph<DDGNode, DDGEdge>;