Searched defs:__that (Results 1 - 2 of 2) sorted by relevance

/external/stlport/stlport/stl/
H A D_list.c139 void _S_remove_if(list<_Tp, _Alloc>& __that, _Predicate __pred) { argument
141 _Literator __first = __that.begin();
142 _Literator __last = __that.end();
146 if (__pred(*__first)) __that.erase(__first);
152 void _S_unique(list<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred) { argument
154 _Literator __first = __that.begin();
155 _Literator __last = __that.end();
160 __that.erase(__next);
168 void _S_merge(list<_Tp, _Alloc>& __that, list<_Tp, _Alloc>& __x, argument
171 _Literator __first1 = __that
206 _S_sort(list<_Tp, _Alloc>& __that, _StrictWeakOrdering __comp) argument
[all...]
H A D_slist.c134 void _Slist_unique(slist<_Tp, _Alloc>& __that, _BinaryPredicate __pred) { argument
136 typename slist<_Tp, _Alloc>::iterator __ite(__that.begin());
137 if (__ite != __that.end()) {
140 __that.erase_after(__ite);
148 void _Slist_merge(slist<_Tp, _Alloc>& __that, slist<_Tp, _Alloc>& __x, argument
151 if (__that.get_allocator() == __x.get_allocator()) {
152 typename slist<_Tp, _Alloc>::iterator __ite(__that.before_begin());
157 __that.splice_after(__ite, __x, __x.before_begin());
162 __that.splice_after(__ite, __x);
166 typename slist<_Tp, _Alloc>::iterator __i1(__that
183 _Slist_sort(slist<_Tp, _Alloc>& __that, _StrictWeakOrdering __comp) argument
[all...]

Completed in 74 milliseconds