• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/glib/

Lines Matching refs:next

67       GList *n = list->next;
92 new_list->next = NULL;
98 last->next = new_list;
118 new_list->next = list;
124 list->prev->next = new_list;
156 tmp_list->prev->next = new_list;
157 new_list->next = tmp_list;
185 node->next = sibling;
189 node->prev->next = node;
203 while (last->next)
204 last = last->next;
206 last->next = _g_list_alloc ();
207 last->next->data = data;
208 last->next->prev = last;
209 last->next->next = NULL;
224 tmp_list->next = list2;
243 tmp = tmp->next;
247 tmp->prev->next = tmp->next;
248 if (tmp->next)
249 tmp->next->prev = tmp->prev;
252 list = list->next;
271 tmp = tmp->next;
274 GList *next = tmp->next;
277 tmp->prev->next = next;
279 list = next;
280 if (next)
281 next->prev = tmp->prev;
284 tmp = next;
299 link->prev->next = link->next;
300 if (link->next)
301 link->next->prev = link->prev;
304 list = list->next;
306 link->next = NULL;
349 list = list->next;
352 last->next = _g_list_alloc ();
353 last->next->prev = last;
354 last = last->next;
356 list = list->next;
358 last->next = NULL;
373 list = last->next;
374 last->next = last->prev;
386 list = list->next;
406 list = list->next;
419 list = list->next;
436 list = list->next;
455 list = list->next;
473 list = list->next;
486 while (list->next)
487 list = list->next;
516 list = list->next;
529 GList *next = list->next;
531 list = next;
556 while ((tmp_list->next) && (cmp > 0))
558 tmp_list = tmp_list->next;
566 if ((!tmp_list->next) && (cmp > 0))
568 tmp_list->next = new_list;
575 tmp_list->prev->next = new_list;
578 new_list->next = tmp_list;
622 l->next = l1;
623 l1 = l1->next;
627 l->next = l2;
628 l2 = l2->next;
630 l = l->next;
634 l->next = l1 ? l1 : l2;
635 l->next->prev = l;
637 return list.next;
649 if (!list->next)
653 l2 = list->next;
655 while ((l2 = l2->next) != NULL)
657 if ((l2 = l2->next) == NULL)
659 l1 = l1->next;
661 l2 = l1->next;
662 l1->next = NULL;