Lines Matching refs:item
165 Item *item = new Item(data);
169 item->prev = &head;
170 item->next = head.next;
171 head.next->prev = item;
172 head.next = item;
177 Item *item = new Item(data);
181 DLLIST_ADDTAIL(&head, item);
202 // move item to another list, no consistency with its iterators though
360 void insert(void *item, int& id)
363 data[id].p = item;