Searched refs:__that (Results 1 - 5 of 5) sorted by relevance

/external/stlport/stlport/stl/
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...]
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_istream.c186 __get_num(basic_istream<_CharT, _Traits>& __that, _Number& __val) {
189 _Sentry __sentry( __that ); // Skip whitespace.
195 (use_facet<_Num_get>(__that.getloc())).get(istreambuf_iterator<_CharT, _Traits>(__that.rdbuf()),
196 0, __that, __err, __val);
199 __that._M_handle_exception(ios_base::badbit);
201 if (__err) __that.setstate(__err);
593 __read_unbuffered(basic_istream<_CharT, _Traits>* __that, basic_streambuf<_CharT, _Traits>* __buf,
613 if (__that->_S_eof(__c)) {
631 __that
[all...]
H A D_list.h236 void _S_remove_if(list<_Tp, _Alloc>& __that, _Predicate __pred);
239 void _S_unique(list<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred);
242 void _S_merge(list<_Tp, _Alloc>& __that, list<_Tp, _Alloc>& __x,
246 void _S_sort(list<_Tp, _Alloc>& __that, _StrictWeakOrdering __comp);
H A D_slist.h206 void _Slist_unique(slist<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred);
209 void _Slist_merge(slist<_Tp, _Alloc>& __that, slist<_Tp, _Alloc>& __x,
213 void _Slist_sort(slist<_Tp, _Alloc>& __that, _StrictWeakOrdering __comp);

Completed in 562 milliseconds