Home
last modified time | relevance | path

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

/external/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
/external/llvm-project/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
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDDG.cpp27 template class llvm::DirectedGraph<DDGNode, DDGEdge>; member in llvm
/external/llvm-project/llvm/lib/Analysis/
DDDG.cpp32 template class llvm::DirectedGraph<DDGNode, DDGEdge>; member in llvm
/external/llvm-project/libcxx/utils/libcxx/
Dgraph.py158 class DirectedGraph(object): class