Home | History | Annotate | Download | only in base

Lines Matching refs:list

5 /*    FreeType utility file for memory and list management (body).         */
241 FT_List_Find( FT_List list,
247 cur = list->head;
263 FT_List_Add( FT_List list,
266 FT_ListNode before = list->tail;
275 list->head = node;
277 list->tail = node;
284 FT_List_Insert( FT_List list,
287 FT_ListNode after = list->head;
294 list->tail = node;
298 list->head = node;
305 FT_List_Remove( FT_List list,
317 list->head = after;
322 list->tail = before;
329 FT_List_Up( FT_List list,
338 /* check whether we are already on top of the list */
347 list->tail = before;
350 node->next = list->head;
351 list->head->prev = node;
352 list->head = node;
359 FT_List_Iterate( FT_List list,
363 FT_ListNode cur = list->head;
386 FT_List_Finalize( FT_List list,
394 cur = list->head;
408 list->head = 0;
409 list->tail = 0;