Lines Matching full:last
120 GList *last;
128 last = g_list_last (list);
129 /* g_assert (last != NULL); */
130 last->next = new_list;
131 new_list->prev = last;
157 * list = g_list_prepend (list, "last");
274 GList *last;
276 last = list;
277 while (last->next)
278 last = last->next;
280 last->next = _g_list_alloc ();
281 last->next->data = data;
282 last->next->prev = last;
283 last->next->next = NULL;
479 GList *last;
484 last = new_list;
488 last->next = _g_list_alloc ();
489 last->next->prev = last;
490 last = last->next;
491 last->data = list->data;
494 last->next = NULL;
512 GList *last;
514 last = NULL;
517 last = list;
518 list = last->next;
519 last->next = last->prev;
520 last->prev = list;
523 return last;
707 * Gets the last element in a #GList.
709 * Returns: the last element in the #GList,