Lines Matching refs:Edges
518 std::vector<Edge> Edges; member
573 EdgeIterable(const std::vector<Edge> &Edges) in EdgeIterable()
574 : BeginIter(Edges.begin()), EndIter(Edges.end()) {} in EdgeIterable()
611 FromNode.Edges.push_back(Edge(Weight, To)); in addEdge()
612 ToNode.Edges.push_back(Edge(ReverseWeight, From)); in addEdge()
617 return EdgeIterable(Node.Edges); in edgesFor()
833 SmallVector<Edge, 8> Edges; in addInstructionToGraph() local
834 argsToEdges(Analysis, &Inst, Edges); in addInstructionToGraph()
838 if (Edges.empty()) { in addInstructionToGraph()
856 for (const Edge &E : Edges) { in addInstructionToGraph()
865 Edges.clear(); in addInstructionToGraph()
866 constexprToEdges(Analysis, *CE, Edges); in addInstructionToGraph()
867 std::for_each(Edges.begin(), Edges.end(), addEdgeToGraph); in addInstructionToGraph()