Lines Matching defs:edges
69 /// Note: In the DOT language, edges can be drawn only from nodes to nodes, but
70 /// not between clusters. However, edges can be clipped to the boundary of a
128 /// Emit all edges. This function should be called after all nodes have been
137 for (const std::string &edge : edges)
139 edges.clear();
205 /// Append an edge to the list of edges.
210 // Do not label edges that start/end at a cluster boundary. Such edges are
215 // Use `ltail` and `lhead` to draw edges between clusters.
221 edges.push_back(strFromOs([&](raw_ostream &os) {
320 // Insert data flow edges originating from each operand.
349 /// A list of edges. For simplicity, should be emitted after all nodes were
351 std::vector<std::string> edges;
354 /// Output for data flow edges is delayed until the end to handle cycles