Home | History | Annotate | Download | only in bits

Lines Matching refs:__cur

73 	  _ForwardIterator __cur = __result;
76 for (; __first != __last; ++__first, ++__cur)
77 std::_Construct(std::__addressof(*__cur), *__first);
78 return __cur;
82 std::_Destroy(__result, __cur);
131 _ForwardIterator __cur = __first;
134 for (; __cur != __last; ++__cur)
135 std::_Construct(std::__addressof(*__cur), __x);
139 std::_Destroy(__first, __cur);
185 _ForwardIterator __cur = __first;
188 for (; __n > 0; --__n, ++__cur)
189 std::_Construct(std::__addressof(*__cur), __x);
193 std::_Destroy(__first, __cur);
241 _ForwardIterator __cur = __result;
245 for (; __first != __last; ++__first, ++__cur)
246 __traits::construct(__alloc, std::__addressof(*__cur), *__first);
247 return __cur;
251 std::_Destroy(__result, __cur, __alloc);
291 _ForwardIterator __cur = __first;
295 for (; __cur != __last; ++__cur)
296 __traits::construct(__alloc, std::__addressof(*__cur), __x);
300 std::_Destroy(__first, __cur, __alloc);
317 _ForwardIterator __cur = __first;
321 for (; __n > 0; --__n, ++__cur)
322 __traits::construct(__alloc, std::__addressof(*__cur), __x);
326 std::_Destroy(__first, __cur, __alloc);
458 _ForwardIterator __cur = __first;
461 for (; __cur != __last; ++__cur)
462 std::_Construct(std::__addressof(*__cur));
466 std::_Destroy(__first, __cur);
493 _ForwardIterator __cur = __first;
496 for (; __n > 0; --__n, ++__cur)
497 std::_Construct(std::__addressof(*__cur));
501 std::_Destroy(__first, __cur);
559 _ForwardIterator __cur = __first;
563 for (; __cur != __last; ++__cur)
564 __traits::construct(__alloc, std::__addressof(*__cur));
568 std::_Destroy(__first, __cur, __alloc);
589 _ForwardIterator __cur = __first;
593 for (; __n > 0; --__n, ++__cur)
594 __traits::construct(__alloc, std::__addressof(*__cur));
598 std::_Destroy(__first, __cur, __alloc);
616 _ForwardIterator __cur = __result;
619 for (; __n > 0; --__n, ++__first, ++__cur)
620 std::_Construct(std::__addressof(*__cur), *__first);
621 return __cur;
625 std::_Destroy(__result, __cur);