HomeSort by: relevance | last modified time | path
    Searched refs:DirectedGraph (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
DirectedGraph.h 1 //===- llvm/ADT/DirectedGraph.h - Directed Graph ----------------*- C++ -*-===//
172 template <class NodeType, class EdgeType> class DirectedGraph {
179 using DGraphType = DirectedGraph<NodeType, EdgeType>;
181 DirectedGraph() = default;
182 explicit DirectedGraph(NodeType &N) : Nodes() { addNode(N); }
183 DirectedGraph(const DGraphType &G) : Nodes(G.Nodes) {}
184 DirectedGraph(DGraphType &&RHS) : Nodes(std::move(RHS.Nodes)) {}
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
DDG.cpp 32 template class llvm::DirectedGraph<DDGNode, DDGEdge>;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
DDG.h 17 #include "llvm/ADT/DirectedGraph.h"
28 using DDGBase = DirectedGraph<DDGNode, DDGEdge>;

Completed in 17 milliseconds