Home | History | Annotate | Download | only in gcc

Lines Matching defs:test_edge

37 struct test_edge;
45 typedef test_edge edge_t;
62 struct test_edge : public dedge<test_graph_traits>
64 test_edge (node_t *src, node_t *dest)
83 test_edge *add_test_edge (test_node *src, test_node *dst)
85 test_edge *result = new test_edge (src, dst);
97 auto_vec<const test_edge *> m_edges;
141 test_edge *ab = g.add_test_edge (a, b);
142 test_edge *ac = g.add_test_edge (a, c);
143 test_edge *cd = g.add_test_edge (c, d);
144 test_edge *be = g.add_test_edge (b, e);
145 test_edge *ef = g.add_test_edge (e, f);
146 test_edge *cf = g.add_test_edge (c, f);