HomeSort by relevance Sort by last modified time
    Searched defs:__last (Results 151 - 153 of 153) sorted by null

1 2 3 4 5 67

  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_deque.h 524 void _M_initialize_dispatch(_InputIter __first, _InputIter __last,
526 _M_range_initialize(__first, __last, _STLP_ITERATOR_CATEGORY(__first, _InputIter));
532 deque(_InputIterator __first, _InputIterator __last,
536 _M_initialize_dispatch(__first, __last, _Integral());
541 deque(_InputIterator __first, _InputIterator __last)
544 _M_initialize_dispatch(__first, __last, _Integral());
549 deque(const value_type* __first, const value_type* __last,
551 : _STLP_PRIV _Deque_base<_Tp, _Alloc>(__a, __last - __first)
552 { _STLP_PRIV __ucopy(__first, __last, this->_M_start); }
554 deque(const_iterator __first, const_iterator __last,
630 insert(end(), __first, __last); local
657 insert(end(), __mid, __last); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_bvector.h 356 __fill_bvector(_Bit_iterator __first, _Bit_iterator __last, bool __x)
358 for (; __first != __last; ++__first)
363 fill(_Bit_iterator __first, _Bit_iterator __last, const bool& __x)
365 if (__first._M_p != __last._M_p)
367 std::fill(__first._M_p + 1, __last._M_p, __x ? ~0 : 0);
369 __fill_bvector(_Bit_iterator(__last._M_p, 0), __last, __x); local
372 __fill_bvector(__first, __last, __x);
548 vector(_InputIterator __first, _InputIterator __last,
553 _M_initialize_dispatch(__first, __last, _Integral())
959 insert(end(), __first, __last); local
975 insert(end(), __mid, __last); local
    [all...]
stl_deque.h 370 _Deque_iterator<_Tp, _Tp&, _Tp*> __last,
373 _Deque_iterator<_Tp, const _Tp&, const _Tp*>(__last),
385 _Deque_iterator<_Tp, _Tp&, _Tp*> __last,
390 const _Tp&, const _Tp*>(__last),
403 _Deque_iterator<_Tp, _Tp&, _Tp*> __last,
406 _Deque_iterator<_Tp, const _Tp&, const _Tp*>(__last),
418 _Deque_iterator<_Tp, _Tp&, _Tp*> __last,
423 const _Tp&, const _Tp*>(__last),
883 deque(_InputIterator __first, _InputIterator __last,
889 _M_initialize_dispatch(__first, __last, _Integral())
1692 insert(end(), __mid, __last); local
    [all...]

Completed in 449 milliseconds

1 2 3 4 5 67