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

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_slist.h 307 slist(_InputIterator __first, _InputIterator __last,
310 { _M_insert_after_range(&this->_M_head._M_data, __first, __last); }
314 slist(_InputIterator __first, _InputIterator __last)
316 { _M_insert_after_range(&this->_M_head._M_data, __first, __last); }
319 slist(const_iterator __first, const_iterator __last,
322 { _M_insert_after_range(&this->_M_head._M_data, __first, __last); }
323 slist(const value_type* __first, const value_type* __last,
326 { _M_insert_after_range(&this->_M_head._M_data, __first, __last); }
356 void assign(_InputIterator __first, _InputIterator __last) {
358 _M_assign_dispatch(__first, __last, _Integral())
    [all...]
_map.h 112 map(_InputIterator __first, _InputIterator __last)
114 { _M_t.insert_unique(__first, __last); }
117 map(_InputIterator __first, _InputIterator __last, const _Compare& __comp,
119 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
123 map(_InputIterator __first, _InputIterator __last, const _Compare& __comp)
124 : _M_t(__comp, allocator_type()) { _M_t.insert_unique(__first, __last); }
128 map(const value_type* __first, const value_type* __last)
130 { _M_t.insert_unique(__first, __last); }
132 map(const value_type* __first,
135 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last);
    [all...]
_set.h 102 set(_InputIterator __first, _InputIterator __last)
104 { _M_t.insert_unique(__first, __last); }
108 set(_InputIterator __first, _InputIterator __last, const _Compare& __comp)
109 : _M_t(__comp, allocator_type()) { _M_t.insert_unique(__first, __last); }
112 set(_InputIterator __first, _InputIterator __last, const _Compare& __comp,
114 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
116 set(const value_type* __first, const value_type* __last)
118 { _M_t.insert_unique(__first, __last); }
120 set(const value_type* __first,
123 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last);
    [all...]
_list.c 49 _List_node_base* __first, _List_node_base* __last) {
53 __first->_M_prev->_M_next = __last;
54 __position->_M_prev->_M_next = __first;
59 __last->_M_prev = __first->_M_prev;
60 __first->_M_prev = __tmp;
141 _Literator __first = __that.begin(); local
143 while (__first != __last) {
144 _Literator __next = __first;
146 if (__pred(*__first)) __that.erase(__first);
154 _Literator __first = __that.begin(); local
    [all...]
_string_workaround.h 191 _Self& append(_InputIter __first, _InputIter __last) {
193 return _M_append_dispatch(__first, __last, _Integral());
208 _Self& _M_appendT(_InputIter __first, _InputIter __last,
210 for ( ; __first != __last ; ++__first)
211 _Base::push_back(*__first);
216 _Self& _M_appendT(_ForwardIter __first, _ForwardIter __last,
218 if (__first != __last) {
219 const size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last));
224 __new_finish = uninitialized_copy(__first, __last, __new_finish)
    [all...]
_bvector.h 417 void _M_initialize_range(_InputIterator __first, _InputIterator __last,
422 for ( ; __first != __last; ++__first)
423 push_back(*__first);
427 void _M_initialize_range(_ForwardIterator __first, _ForwardIterator __last,
429 size_type __n = _STLP_STD::distance(__first, __last);
431 _STLP_STD::copy(__first, __last, this->_M_start);
436 _InputIterator __first, _InputIterator __last,
438 for ( ; __first != __last; ++__first) {
633 insert(end(), __first, __last); local
    [all...]
concept_checks.h 64 #define _STLP_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
66 #define _STLP_CLASS_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
67 static int __##__func##__ret##__first##__second##_binary_function_check
68 #define _STLP_REQUIRES_BINARY_OP(__opname, __ret, __first, __second) \
70 #define _STLP_CLASS_REQUIRES_BINARY_OP(__opname, __ret, __first, __second) \
71 static int __##__opname##__ret##__first##__second##_require_binary_op
131 #define _STLP_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
133 __ret (*__x)( __func&, const __first&, const __second& ) = \
135 __func, __ret, __first, __second>::__binary_function_requirement_violation; \
139 #define _STLP_REQUIRES_BINARY_OP(__opname, __ret, __first, __second)
    [all...]
_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);
630 insert(end(), __first, __last); local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_map.h 112 map(_InputIterator __first, _InputIterator __last)
114 { _M_t.insert_unique(__first, __last); }
117 map(_InputIterator __first, _InputIterator __last, const _Compare& __comp,
119 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
123 map(_InputIterator __first, _InputIterator __last, const _Compare& __comp)
124 : _M_t(__comp, allocator_type()) { _M_t.insert_unique(__first, __last); }
128 map(const value_type* __first, const value_type* __last)
130 { _M_t.insert_unique(__first, __last); }
132 map(const value_type* __first,
135 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last);
    [all...]
_set.h 102 set(_InputIterator __first, _InputIterator __last)
104 { _M_t.insert_unique(__first, __last); }
108 set(_InputIterator __first, _InputIterator __last, const _Compare& __comp)
109 : _M_t(__comp, allocator_type()) { _M_t.insert_unique(__first, __last); }
112 set(_InputIterator __first, _InputIterator __last, const _Compare& __comp,
114 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
116 set(const value_type* __first, const value_type* __last)
118 { _M_t.insert_unique(__first, __last); }
120 set(const value_type* __first,
123 : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last);
    [all...]
_list.c 49 _List_node_base* __first, _List_node_base* __last) {
53 __first->_M_prev->_M_next = __last;
54 __position->_M_prev->_M_next = __first;
59 __last->_M_prev = __first->_M_prev;
60 __first->_M_prev = __tmp;
141 _Literator __first = __that.begin(); local
143 while (__first != __last) {
144 _Literator __next = __first;
146 if (__pred(*__first)) __that.erase(__first);
154 _Literator __first = __that.begin(); local
    [all...]
_string_workaround.h 191 _Self& append(_InputIter __first, _InputIter __last) {
193 return _M_append_dispatch(__first, __last, _Integral());
208 _Self& _M_appendT(_InputIter __first, _InputIter __last,
210 for ( ; __first != __last ; ++__first)
211 _Base::push_back(*__first);
216 _Self& _M_appendT(_ForwardIter __first, _ForwardIter __last,
218 if (__first != __last) {
219 const size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last));
224 __new_finish = uninitialized_copy(__first, __last, __new_finish)
    [all...]
_bvector.h 417 void _M_initialize_range(_InputIterator __first, _InputIterator __last,
422 for ( ; __first != __last; ++__first)
423 push_back(*__first);
427 void _M_initialize_range(_ForwardIterator __first, _ForwardIterator __last,
429 size_type __n = _STLP_STD::distance(__first, __last);
431 _STLP_STD::copy(__first, __last, this->_M_start);
436 _InputIterator __first, _InputIterator __last,
438 for ( ; __first != __last; ++__first) {
633 insert(end(), __first, __last); local
    [all...]
concept_checks.h 64 #define _STLP_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
66 #define _STLP_CLASS_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
67 static int __##__func##__ret##__first##__second##_binary_function_check
68 #define _STLP_REQUIRES_BINARY_OP(__opname, __ret, __first, __second) \
70 #define _STLP_CLASS_REQUIRES_BINARY_OP(__opname, __ret, __first, __second) \
71 static int __##__opname##__ret##__first##__second##_require_binary_op
131 #define _STLP_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
133 __ret (*__x)( __func&, const __first&, const __second& ) = \
135 __func, __ret, __first, __second>::__binary_function_requirement_violation; \
139 #define _STLP_REQUIRES_BINARY_OP(__opname, __ret, __first, __second)
    [all...]
_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);
630 insert(end(), __first, __last); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_tempbuf.h 163 _Temporary_buffer(_ForwardIterator __first, _ForwardIterator __last);
185 __ucr(_Pointer __first, _Pointer __last,
188 if(__first == __last)
191 _Pointer __cur = __first;
194 std::_Construct(std::__addressof(*__first),
205 std::_Destroy(__first, __cur);
231 __uninitialized_construct_buf(_Pointer __first, _Pointer __last,
239 __ucr(__first, __last, __seed);
244 _Temporary_buffer(_ForwardIterator __first, _ForwardIterator __last)
245 : _M_original_len(std::distance(__first, __last))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_tempbuf.h 163 _Temporary_buffer(_ForwardIterator __first, _ForwardIterator __last);
185 __ucr(_Pointer __first, _Pointer __last,
188 if(__first == __last)
191 _Pointer __cur = __first;
194 std::_Construct(std::__addressof(*__first),
205 std::_Destroy(__first, __cur);
231 __uninitialized_construct_buf(_Pointer __first, _Pointer __last,
239 __ucr(__first, __last, __seed);
244 _Temporary_buffer(_ForwardIterator __first, _ForwardIterator __last)
245 : _M_original_len(std::distance(__first, __last))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_tempbuf.h 163 _Temporary_buffer(_ForwardIterator __first, _ForwardIterator __last);
185 __ucr(_Pointer __first, _Pointer __last,
188 if(__first == __last)
191 _Pointer __cur = __first;
194 std::_Construct(std::__addressof(*__first),
205 std::_Destroy(__first, __cur);
231 __uninitialized_construct_buf(_Pointer __first, _Pointer __last,
239 __ucr(__first, __last, __seed);
244 _Temporary_buffer(_ForwardIterator __first, _ForwardIterator __last)
245 : _M_original_len(std::distance(__first, __last))
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_tempbuf.h 163 _Temporary_buffer(_ForwardIterator __first, _ForwardIterator __last);
185 __ucr(_Pointer __first, _Pointer __last,
188 if(__first == __last)
191 _Pointer __cur = __first;
194 std::_Construct(std::__addressof(*__first),
205 std::_Destroy(__first, __cur);
231 __uninitialized_construct_buf(_Pointer __first, _Pointer __last,
239 __ucr(__first, __last, __seed);
244 _Temporary_buffer(_ForwardIterator __first, _ForwardIterator __last)
245 : _M_original_len(std::distance(__first, __last))
    [all...]
stl_algobase.h 303 __copy_m(_II __first, _II __last, _OI __result)
305 for (; __first != __last; ++__result, ++__first)
306 *__result = *__first;
317 __copy_m(_II __first, _II __last, _OI __result)
319 for (; __first != __last; ++__result, ++__first)
320 *__result = std::move(*__first);
331 __copy_m(_II __first, _II __last, _OI __result)
334 for(_Distance __n = __last - __first; __n > 0; --__n
    [all...]
stl_bvector.h 391 __fill_bvector(_Bit_iterator __first, _Bit_iterator __last, bool __x)
393 for (; __first != __last; ++__first)
394 *__first = __x;
398 fill(_Bit_iterator __first, _Bit_iterator __last, const bool& __x)
400 if (__first._M_p != __last._M_p)
402 std::fill(__first._M_p + 1, __last._M_p, __x ? ~0 : 0);
403 __fill_bvector(__first, _Bit_iterator(__first._M_p + 1, 0), __x);
407 __fill_bvector(__first, __last, __x)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
_deque.h 178 deque(_InputIterator __first, _InputIterator __last,
181 : _M_impl(__first, __last,
187 insert(end(), __first, __last); local
193 deque(_InputIterator __first, _InputIterator __last)
195 : _M_impl(__first, __last) {}
197 { insert(end(), __first, __last); }
202 deque(const_pointer __first, const_pointer __last,
204 : _M_impl(cast_traits::to_storage_type_cptr(__first),
208 deque(const_iterator __first, const_iterator __last,
210 : _M_impl(ite_cast_traits::to_storage_type_cite(__first),
    [all...]
_slist.h 106 slist(_InputIterator __first, _InputIterator __last,
109 : _M_impl(__first, __last, _STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {}
112 insert_after(before_begin(), __first, __last);
118 slist(_InputIterator __first, _InputIterator __last)
120 : _M_impl(__first, __last) {}
122 { insert_after(before_begin(), __first, __last); }
126 slist(const_iterator __first, const_iterator __last,
128 : _M_impl(_BaseConstIte(__first._M_node), _BaseConstIte(__last._M_node),
130 slist(const value_type* __first, const value_type* __last,
132 : _M_impl(cast_traits::to_storage_type_cptr(__first), cast_traits::to_storage_type_cptr(__last)
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/pointers/
_deque.h 178 deque(_InputIterator __first, _InputIterator __last,
181 : _M_impl(__first, __last,
187 insert(end(), __first, __last); local
193 deque(_InputIterator __first, _InputIterator __last)
195 : _M_impl(__first, __last) {}
197 { insert(end(), __first, __last); }
202 deque(const_pointer __first, const_pointer __last,
204 : _M_impl(cast_traits::to_storage_type_cptr(__first),
208 deque(const_iterator __first, const_iterator __last,
210 : _M_impl(ite_cast_traits::to_storage_type_cite(__first),
    [all...]
_slist.h 106 slist(_InputIterator __first, _InputIterator __last,
109 : _M_impl(__first, __last, _STLP_CONVERT_ALLOCATOR(__a, _StorageType)) {}
112 insert_after(before_begin(), __first, __last);
118 slist(_InputIterator __first, _InputIterator __last)
120 : _M_impl(__first, __last) {}
122 { insert_after(before_begin(), __first, __last); }
126 slist(const_iterator __first, const_iterator __last,
128 : _M_impl(_BaseConstIte(__first._M_node), _BaseConstIte(__last._M_node),
130 slist(const value_type* __first, const value_type* __last,
132 : _M_impl(cast_traits::to_storage_type_cptr(__first), cast_traits::to_storage_type_cptr(__last)
    [all...]

Completed in 1078 milliseconds

1 2 34 5 6 7 8 91011>>