Home | History | Annotate | Download | only in tests

Lines Matching defs:Line

13 } Line;
19 const Line *line_a = a;
20 const Line *line_b = b;
28 const Line *line_a = a;
29 const Line *line_b = b;
38 GArray *line_array = g_array_new (FALSE, FALSE, sizeof(Line));
95 Line line;
103 line.key = g_utf8_collate_key_for_filename (str, -1);
105 line.key = g_utf8_collate_key (str, -1);
106 line.str = str;
108 g_array_append_val (line_array, line);
117 qsort (line_array->data, line_array->len, sizeof (Line), do_key ? compare_key : compare_collate);
119 printf ("%s\n", g_array_index (line_array, Line, i).str);