Searched refs:existing_previous_item (Results 1 - 6 of 6) sorted by relevance

/external/webrtc/src/system_wrappers/source/
H A Dlist_no_stl.cc149 int ListWrapper::Insert(ListItem* existing_previous_item, ListItem* new_item) argument
155 // Allow existing_previous_item to be NULL if the list is empty.
158 if (!existing_previous_item && !Empty())
163 if (!existing_previous_item)
168 ListItem* next_item = existing_previous_item->next_;
169 new_item->next_ = existing_previous_item->next_;
170 new_item->prev_ = existing_previous_item;
171 existing_previous_item->next_ = new_item;
H A Dlist_stl.h57 int Insert(ListItem* existing_previous_item, ListItem* new_item);
H A Dlist_stl.cc180 int ListWrapper::Insert(ListItem* existing_previous_item, argument
186 if (!existing_previous_item && !Empty())
199 insert_location = existing_previous_item->this_iter_;
H A Dlist_no_stl.h61 int Insert(ListNoStlItem* existing_previous_item,
H A Dlist_unittest.cc66 int Insert(ListItem* existing_previous_item, argument
68 const int retval = list_.Insert(existing_previous_item, new_item);
/external/webrtc/src/system_wrappers/interface/
H A Dlist_wrapper.h82 // Insert list item after existing_previous_item. Please note that new_item
86 int Insert(ListItem* existing_previous_item,

Completed in 83 milliseconds