Searched refs:__first (Results 51 - 60 of 60) sorted by relevance

123

/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_hashtable.c63 const size_t* __first = _S_primes(__size); local
64 return *(__first + __size - 1);
71 const size_t* __first = _S_primes(__size); local
72 const size_t* __last = __first + __size;
73 const size_t* pos = __lower_bound(__first, __last, __n,
334 ::erase(const_iterator __first, const_iterator __last) { argument
335 if (__first == __last)
337 size_type __f_bucket = _M_bkt_num(*__first);
342 if (__cur == __first._M_ite) {
348 for (; (__cur != __last) && (__cur != __first
406 const size_type *__first; local
[all...]
H A D_fstream.h80 // the end. On many operating systems n == __last - __first.
85 streamoff _M_get_offset(char* __first, char* __last) { argument
87 return __last - __first;
90 ? (__last - __first)
91 : count(__first, __last, '\n') + (__last - __first);
358 char* __first, char* __last) {
359 ptrdiff_t __n = __last - __first;
360 return (__buf->_M_write(__first, __n));
357 _M_doit(basic_filebuf<char, char_traits<char> >* __buf, char* __first, char* __last) argument
H A D_rope.c1358 void _Rope_rotate(_Rope_iterator<_CharT,_Alloc> __first, argument
1361 _STLP_ASSERT(__first.container() == __middle.container() &&
1363 rope<_CharT,_Alloc>& __r(__first.container());
1364 rope<_CharT,_Alloc> __prefix = __r.substr(0, __first.index());
1370 __r.substr(__first.index(), __middle.index() - __first.index());
1387 _Rope_iterator<wchar_t, allocator<char> > __first,
1390 _Rope_rotate(__first, __middle, __last);
H A D_num_get.h193 __get_decimal_integer(_InputIter& __first, _InputIter& __last, _Integer& __val, _CharT*);
H A D_string_sum.h146 _BString& append(_InputIter __first, _InputIter __last) argument
147 {return _M_get_storage().append(__first, __last);}
H A D_rope.h2353 void _Rope_rotate(_Rope_iterator<_CharT, _Alloc> __first,
2357 inline void rotate(_Rope_iterator<char, allocator<char> > __first, argument
2360 { _Rope_rotate(__first, __middle, __last); }
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
H A D_hashtable.h126 void _Invalidate_iterators(const const_iterator& __first, const const_iterator& __last) argument
127 { _STLP_PRIV __invalidate_range(&_M_iter_list, __first, __last); }
298 void erase(const_iterator __first, const_iterator __last) { argument
299 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first, __last,
301 _Invalidate_iterators(__first, __last);
302 _M_non_dbg_impl.erase(__first._M_iterator, __last._M_iterator);
H A D_debug.h272 inline bool _STLP_CALL stlp_in_range(const _Iterator& __first, const _Iterator& __last, argument
274 { return __valid_range(__first,__last) && __valid_range(__start,__first) && __valid_range(__last,__finish); }
399 const _Iterator& __first,
407 void _STLP_CALL __change_range_owner(const _Iterator& __first,
/ndk/tests/device/test-gnustl-full/unit/
H A Dptrspec_test.cpp40 bool operator () (_Tp *__first, _Tp *__second) const { argument
41 return *__first < *__second;
/ndk/tests/device/test-stlport/unit/
H A Dptrspec_test.cpp40 bool operator () (_Tp *__first, _Tp *__second) const { argument
41 return *__first < *__second;

Completed in 357 milliseconds

123