HomeSort by relevance Sort by last modified time
    Searched refs:__first (Results 126 - 150 of 314) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_deque.c 151 const value_type* __first, const value_type* __last) {
155 size_type __n = __last - __first;
159 _STLP_PRIV __ucopy(__first, __last, __new_start);
167 _STLP_PRIV __ucopy(__first, __last, this->_M_finish);
174 _M_insert_range_aux(__pos, __first, __last, __n, _Movable());
179 const_iterator __first, const_iterator __last) {
183 size_type __n = __last - __first;
187 _STLP_PRIV __ucopy(__first, __last, __new_start);
195 _STLP_PRIV __ucopy(__first, __last, this->_M_finish);
202 _M_insert_range_aux(__pos, __first, __last, __n, _Movable())
    [all...]
_tempbuf.h 111 _Temporary_buffer(_ForwardIterator __first, _ForwardIterator __last) {
119 _M_len = _STLP_STD::distance(__first, __last);
122 _M_initialize_buffer(*__first, _Trivial());
150 temporary_buffer(_ForwardIterator __first, _ForwardIterator __last)
151 : _Temporary_buffer<_ForwardIterator, _Tp>(__first, __last) {}
_list.h 67 _Node_base* __first, _Node_base* __last);
324 list(_InputIterator __first, _InputIterator __last,
327 { _M_insert(begin(), __first, __last); } local
331 list(_InputIterator __first, _InputIterator __last)
333 { _M_insert(begin(), __first, __last); } local
336 list(const value_type* __first, const value_type* __last,
339 { _M_insert(begin(), __first, __last); } local
340 list(const_iterator __first, const_iterator __last,
343 { _M_insert(begin(), __first, __last); } local
438 void _M_insert(iterator __pos, _InputIterator __first, _InputIterator __last)
635 iterator __first = begin(); local
    [all...]
_string.h 456 _Self& _M_append(const _CharT* __first, const _CharT* __last);
460 _Self& _M_appendT(_InputIter __first, _InputIter __last,
462 for ( ; __first != __last ; ++__first)
463 push_back(*__first);
468 _Self& _M_appendT(_ForwardIter __first, _ForwardIter __last,
470 if (__first != __last) {
471 size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last));
476 __new_finish = uninitialized_copy(__first, __last, __new_finish);
482 _Traits::assign(*this->_M_finish, *__first++)
    [all...]
_num_get.c 118 __get_integer(_InputIter& __first, _InputIter& __last,
130 for ( ; __first != __last ; ++__first) {
132 const _CharT __c = *__first;
178 __get_integer(_InputIter& __first, _InputIter& __last,
190 for ( ; __first != __last ; ++__first) {
192 const _CharT __c = *__first;
239 __get_decimal_integer(_InputIter& __first, _InputIter& __last, _Integer& __val, _CharT* /*dummy*/) {
242 return __get_integer(__first, __last, 10, __val, 0, false, _CharT() /*separator*/, __grp, __false_type())
    [all...]
_string.c 196 basic_string<_CharT, _Traits, _Alloc>::_M_append(const _CharT* __first, const _CharT* __last) {
197 if (__first != __last) {
198 size_type __n = __STATIC_CAST(size_type, __last - __first);
203 __new_finish = _STLP_PRIV __ucopy(__first, __last, __new_finish);
209 const _CharT* __f1 = __first;
213 _Traits::assign(*end(), *__first); local
315 const _CharT* __first, const _CharT* __last,
318 if (__first != __last) {
319 const size_t __n = __last - __first;
328 _M_copy(__first, __last, __pos)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_list.h 67 _Node_base* __first, _Node_base* __last);
324 list(_InputIterator __first, _InputIterator __last,
327 { _M_insert(begin(), __first, __last); } local
331 list(_InputIterator __first, _InputIterator __last)
333 { _M_insert(begin(), __first, __last); } local
336 list(const value_type* __first, const value_type* __last,
339 { _M_insert(begin(), __first, __last); } local
340 list(const_iterator __first, const_iterator __last,
343 { _M_insert(begin(), __first, __last); } local
438 void _M_insert(iterator __pos, _InputIterator __first, _InputIterator __last)
635 iterator __first = begin(); local
    [all...]
_string.h 456 _Self& _M_append(const _CharT* __first, const _CharT* __last);
460 _Self& _M_appendT(_InputIter __first, _InputIter __last,
462 for ( ; __first != __last ; ++__first)
463 push_back(*__first);
468 _Self& _M_appendT(_ForwardIter __first, _ForwardIter __last,
470 if (__first != __last) {
471 size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last));
476 __new_finish = uninitialized_copy(__first, __last, __new_finish);
482 _Traits::assign(*this->_M_finish, *__first++)
    [all...]
_num_get.c 118 __get_integer(_InputIter& __first, _InputIter& __last,
130 for ( ; __first != __last ; ++__first) {
132 const _CharT __c = *__first;
178 __get_integer(_InputIter& __first, _InputIter& __last,
190 for ( ; __first != __last ; ++__first) {
192 const _CharT __c = *__first;
239 __get_decimal_integer(_InputIter& __first, _InputIter& __last, _Integer& __val, _CharT* /*dummy*/) {
242 return __get_integer(__first, __last, 10, __val, 0, false, _CharT() /*separator*/, __grp, __false_type())
    [all...]
_string.c 196 basic_string<_CharT, _Traits, _Alloc>::_M_append(const _CharT* __first, const _CharT* __last) {
197 if (__first != __last) {
198 size_type __n = __STATIC_CAST(size_type, __last - __first);
203 __new_finish = _STLP_PRIV __ucopy(__first, __last, __new_finish);
209 const _CharT* __f1 = __first;
213 _Traits::assign(*end(), *__first); local
315 const _CharT* __first, const _CharT* __last,
318 if (__first != __last) {
319 const size_t __n = __last - __first;
328 _M_copy(__first, __last, __pos)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_debug.c 47 stlp_in_range_aux(const _Iterator& __it, const _Iterator& __first,
49 return ( __it >= __first &&
56 inline bool _STLP_CALL stlp_in_range_aux(_Iterator1 __it, const _Iterator& __first,
58 inline bool _STLP_CALL stlp_in_range_aux(const _Iterator1& __it, const _Iterator& __first,
61 _Iterator1 __i(__first);
69 stlp_in_range_aux(const _Iterator1& __it, const _Iterator& __first,
71 _Iterator1 __i(__first);
78 bool _STLP_CALL __check_range_aux(const _Iterator& __first, const _Iterator& __last,
80 _STLP_VERBOSE_RETURN(__valid_range(__first,__last), _StlMsg_INVALID_RANGE )
85 bool _STLP_CALL __check_range_aux(_Integral /*__first*/, _Integral /*__last*/
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/debug/
_debug.c 47 stlp_in_range_aux(const _Iterator& __it, const _Iterator& __first,
49 return ( __it >= __first &&
56 inline bool _STLP_CALL stlp_in_range_aux(_Iterator1 __it, const _Iterator& __first,
58 inline bool _STLP_CALL stlp_in_range_aux(const _Iterator1& __it, const _Iterator& __first,
61 _Iterator1 __i(__first);
69 stlp_in_range_aux(const _Iterator1& __it, const _Iterator& __first,
71 _Iterator1 __i(__first);
78 bool _STLP_CALL __check_range_aux(const _Iterator& __first, const _Iterator& __last,
80 _STLP_VERBOSE_RETURN(__valid_range(__first,__last), _StlMsg_INVALID_RANGE )
85 bool _STLP_CALL __check_range_aux(_Integral /*__first*/, _Integral /*__last*/
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/debug/
multiset.h 88 multiset(_InputIterator __first, _InputIterator __last,
91 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
128 multiset(_InputIterator __first, _InputIterator __last,
130 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
279 insert(_InputIterator __first, _InputIterator __last)
281 __glibcxx_check_valid_range(__first, __last);
282 _Base::insert(__gnu_debug::__base(__first),
328 erase(const_iterator __first, const_iterator __last)
332 __glibcxx_check_erase_range(__first, __last);
333 for (_Base_const_iterator __victim = __first.base()
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_vector.h 428 * @param __first An input iterator.
445 vector(_InputIterator __first, _InputIterator __last,
448 { _M_initialize_dispatch(__first, __last, __false_type()); }
451 vector(_InputIterator __first, _InputIterator __last,
457 _M_initialize_dispatch(__first, __last, _Integral());
537 * @param __first An input iterator.
541 * range [__first,__last).
551 assign(_InputIterator __first, _InputIterator __last)
552 { _M_assign_dispatch(__first, __last, __false_type()); }
556 assign(_InputIterator __first, _InputIterator __last
    [all...]
stl_deque.h 375 copy(_Deque_iterator<_Tp, _Tp&, _Tp*> __first,
378 { return std::copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*>(__first),
390 copy_backward(_Deque_iterator<_Tp, _Tp&, _Tp*> __first,
394 const _Tp&, const _Tp*>(__first),
408 move(_Deque_iterator<_Tp, _Tp&, _Tp*> __first,
411 { return std::move(_Deque_iterator<_Tp, const _Tp&, const _Tp*>(__first),
423 move_backward(_Deque_iterator<_Tp, _Tp&, _Tp*> __first,
427 const _Tp&, const _Tp*>(__first),
885 * @param __first An input iterator.
889 * Create a %deque consisting of copies of the elements from [__first,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
iterator.h 61 _IteratorPair(const _Iterator1& __first, const _Iterator2& __second)
62 : _Base(__first, __second) { }
136 _IteratorTriple(const _Iterator1& __first, const _Iterator2& __second,
139 _M_first = __first;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
iterator.h 61 _IteratorPair(const _Iterator1& __first, const _Iterator2& __second)
62 : _Base(__first, __second) { }
136 _IteratorTriple(const _Iterator1& __first, const _Iterator2& __second,
139 _M_first = __first;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
iterator.h 61 _IteratorPair(const _Iterator1& __first, const _Iterator2& __second)
62 : _Base(__first, __second) { }
136 _IteratorTriple(const _Iterator1& __first, const _Iterator2& __second,
139 _M_first = __first;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
iterator.h 61 _IteratorPair(const _Iterator1& __first, const _Iterator2& __second)
62 : _Base(__first, __second) { }
136 _IteratorTriple(const _Iterator1& __first, const _Iterator2& __second,
139 _M_first = __first;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/debug/
map.h 80 map(_InputIterator __first, _InputIterator __last,
83 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
280 insert(_InputIterator __first, _InputIterator __last)
282 __glibcxx_check_valid_range(__first, __last);
283 _Base::insert(__gnu_debug::__base(__first),
325 erase(const_iterator __first, const_iterator __last)
329 __glibcxx_check_erase_range(__first, __last);
330 for (_Base_const_iterator __victim = __first.base();
335 ._M_iterator(__first, "first")
339 return iterator(_Base::erase(__first.base(), __last.base()), this)
    [all...]
multimap.h 81 multimap(_InputIterator __first, _InputIterator __last,
84 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
261 insert(_InputIterator __first, _InputIterator __last)
263 __glibcxx_check_valid_range(__first, __last);
264 _Base::insert(__gnu_debug::__base(__first),
308 erase(const_iterator __first, const_iterator __last)
312 __glibcxx_check_erase_range(__first, __last);
313 for (_Base_const_iterator __victim = __first.base();
318 ._M_iterator(__first, "first")
322 return iterator(_Base::erase(__first.base(), __last.base()), this)
    [all...]
multiset.h 80 multiset(_InputIterator __first, _InputIterator __last,
83 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
244 insert(_InputIterator __first, _InputIterator __last)
246 __glibcxx_check_valid_range(__first, __last);
247 _Base::insert(__gnu_debug::__base(__first),
293 erase(const_iterator __first, const_iterator __last)
297 __glibcxx_check_erase_range(__first, __last);
298 for (_Base_const_iterator __victim = __first.base();
303 ._M_iterator(__first, "first")
307 return iterator(_Base::erase(__first.base(), __last.base()), this)
    [all...]
set.h 80 set(_InputIterator __first, _InputIterator __last,
83 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
255 insert(_InputIterator __first, _InputIterator __last)
257 __glibcxx_check_valid_range(__first, __last);
258 _Base::insert(__gnu_debug::__base(__first),
302 erase(const_iterator __first, const_iterator __last)
306 __glibcxx_check_erase_range(__first, __last);
307 for (_Base_const_iterator __victim = __first.base();
312 ._M_iterator(__first, "first")
316 return iterator(_Base::erase(__first.base(), __last.base()), this)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/debug/
map.h 80 map(_InputIterator __first, _InputIterator __last,
83 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
280 insert(_InputIterator __first, _InputIterator __last)
282 __glibcxx_check_valid_range(__first, __last);
283 _Base::insert(__gnu_debug::__base(__first),
325 erase(const_iterator __first, const_iterator __last)
329 __glibcxx_check_erase_range(__first, __last);
330 for (_Base_const_iterator __victim = __first.base();
335 ._M_iterator(__first, "first")
339 return iterator(_Base::erase(__first.base(), __last.base()), this)
    [all...]
multimap.h 81 multimap(_InputIterator __first, _InputIterator __last,
84 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
261 insert(_InputIterator __first, _InputIterator __last)
263 __glibcxx_check_valid_range(__first, __last);
264 _Base::insert(__gnu_debug::__base(__first),
308 erase(const_iterator __first, const_iterator __last)
312 __glibcxx_check_erase_range(__first, __last);
313 for (_Base_const_iterator __victim = __first.base();
318 ._M_iterator(__first, "first")
322 return iterator(_Base::erase(__first.base(), __last.base()), this)
    [all...]

Completed in 1298 milliseconds

1 2 3 4 56 7 8 91011>>