Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDirectedGraph.h180 using DGraphType = DirectedGraph<NodeType, EdgeType>; variable
184 DirectedGraph(const DGraphType &G) : Nodes(G.Nodes) {} in DirectedGraph()
185 DirectedGraph(DGraphType &&RHS) : Nodes(std::move(RHS.Nodes)) {} in DirectedGraph()
186 DGraphType &operator=(const DGraphType &G) {
190 DGraphType &operator=(const DGraphType &&G) {
213 static_cast<const DGraphType &>(*this).findNode(N)); in findNode()