Searched refs:existing_next_item (Results 1 - 6 of 6) 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.h58 int InsertBefore(ListItem* existing_next_item, ListItem* 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_no_stl.h64 int InsertBefore(ListNoStlItem* existing_next_item,
H A Dlist_unittest.cc75 int InsertBefore(ListItem* existing_next_item, argument
77 const int retval = list_.InsertBefore(existing_next_item, new_item);
/external/webrtc/src/system_wrappers/interface/
H A Dlist_wrapper.h89 // Insert list item before existing_next_item. Please note that new_item
93 int InsertBefore(ListItem* existing_next_item,

Completed in 258 milliseconds