Home
last modified time | relevance | path

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

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