Home
last modified time | relevance | path

Searched refs:__that (Results 1 – 6 of 6) sorted by relevance

/external/stlport/stlport/stl/
D_list.c139 void _S_remove_if(list<_Tp, _Alloc>& __that, _Predicate __pred) { in _S_remove_if() argument
141 _Literator __first = __that.begin(); in _S_remove_if()
142 _Literator __last = __that.end(); in _S_remove_if()
146 if (__pred(*__first)) __that.erase(__first); in _S_remove_if()
152 void _S_unique(list<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred) { in _S_unique() argument
154 _Literator __first = __that.begin(); in _S_unique()
155 _Literator __last = __that.end(); in _S_unique()
160 __that.erase(__next); in _S_unique()
168 void _S_merge(list<_Tp, _Alloc>& __that, list<_Tp, _Alloc>& __x, in _S_merge() argument
171 _Literator __first1 = __that.begin(); in _S_merge()
[all …]
D_slist.c134 void _Slist_unique(slist<_Tp, _Alloc>& __that, _BinaryPredicate __pred) { in _Slist_unique() argument
136 typename slist<_Tp, _Alloc>::iterator __ite(__that.begin()); in _Slist_unique()
137 if (__ite != __that.end()) { in _Slist_unique()
140 __that.erase_after(__ite); in _Slist_unique()
148 void _Slist_merge(slist<_Tp, _Alloc>& __that, slist<_Tp, _Alloc>& __x, in _Slist_merge() argument
152 if (__that.get_allocator() == __x.get_allocator()) { in _Slist_merge()
153 typename slist<_Tp, _Alloc>::iterator __ite(__that.before_begin()); in _Slist_merge()
158 __that.splice_after(__ite, __x, __x.before_begin()); in _Slist_merge()
163 __that.splice_after(__ite, __x); in _Slist_merge()
167 typename slist<_Tp, _Alloc>::iterator __i1(__that.before_begin()), __i2(__x.begin()); in _Slist_merge()
[all …]
D_istream.c186 __get_num(basic_istream<_CharT, _Traits>& __that, _Number& __val) { in __get_num() argument
189 _Sentry __sentry( __that ); // Skip whitespace. in __get_num()
195 … (use_facet<_Num_get>(__that.getloc())).get(istreambuf_iterator<_CharT, _Traits>(__that.rdbuf()), in __get_num()
196 0, __that, __err, __val); in __get_num()
199 __that._M_handle_exception(ios_base::badbit); in __get_num()
201 if (__err) __that.setstate(__err); in __get_num()
579 __read_unbuffered(basic_istream<_CharT, _Traits>* __that, basic_streambuf<_CharT, _Traits>* __buf, in __read_unbuffered() argument
599 if (__that->_S_eof(__c)) { in __read_unbuffered()
617 __that->_M_handle_exception(ios_base::badbit); in __read_unbuffered()
625 __that->setstate(__status); // This might throw. in __read_unbuffered()
[all …]
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);
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);
/external/stlport/etc/
DChangeLog-5.16119 list instance is created using the __that allocator instance copy to be more