Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DDirectedGraph.h176 explicit DirectedGraph(NodeType &N) : Nodes() { addNode(N); } in DirectedGraph() function
177 DirectedGraph(const DGraphType &G) : Nodes(G.Nodes) {} in DirectedGraph() function
178 DirectedGraph(DGraphType &&RHS) : Nodes(std::move(RHS.Nodes)) {} in DirectedGraph() function
/third_party/rust/rust/compiler/rustc_data_structures/src/graph/
Dmod.rs13 pub trait DirectedGraph { trait
Dreference.rs3 impl<'graph, G: DirectedGraph> DirectedGraph for &'graph G { impl
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDDG.cpp27 template class llvm::DirectedGraph<DDGNode, DDGEdge>; member in llvm