Searched defs:existing_next_item (Results 1 - 3 of 3) sorted by relevance

/external/webrtc/src/system_wrappers/source/
H A Dlist_no_stl.cc184 int ListWrapper::InsertBefore(ListItem* existing_next_item, argument
191 // Allow existing_next_item to be NULL if the list is empty.
194 if (!existing_next_item && !Empty())
199 if (!existing_next_item)
205 ListItem* previous_item = existing_next_item->prev_;
206 new_item->next_ = existing_next_item;
208 existing_next_item->prev_ = new_item;
H A Dlist_stl.cc210 int ListWrapper::InsertBefore(ListItem* existing_next_item, argument
213 // Allow existing_next_item to be NULL if the list is empty.
216 if (!existing_next_item && !Empty())
228 insert_location = existing_next_item->this_iter_;
H A Dlist_unittest.cc75 int InsertBefore(ListItem* existing_next_item, argument
77 const int retval = list_.InsertBefore(existing_next_item, new_item);

Completed in 81 milliseconds