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;
244 for (; __first != __last; ++__first, ++__cur)
245 __alloc.construct(std::__addressof(*__cur), *__first);
246 return __cur;
250 std::_Destroy(__result, __cur, __alloc);
277 _ForwardIterator __cur = __first;
280 for (; __cur != __last; ++__cur)
281 __alloc.construct(std::__addressof(*__cur), __x);
285 std::_Destroy(__first, __cur, __alloc);
302 _ForwardIterator __cur = __first;
305 for (; __n > 0; --__n, ++__cur)
306 __alloc.construct(std::__addressof(*__cur), __x);
310 std::_Destroy(__first, __cur, __alloc);
442 _ForwardIterator __cur = __first;
445 for (; __cur != __last; ++__cur)
446 std::_Construct(std::__addressof(*__cur));
450 std::_Destroy(__first, __cur);
477 _ForwardIterator __cur = __first;
480 for (; __n > 0; --__n, ++__cur)
481 std::_Construct(std::__addressof(*__cur));
485 std::_Destroy(__first, __cur);
558 _ForwardIterator __cur = __first;
561 for (; __cur != __last; ++__cur)
562 _Construct_default_a(std::__addressof(*__cur), __alloc);
566 std::_Destroy(__first, __cur, __alloc);
587 _ForwardIterator __cur = __first;
590 for (; __n > 0; --__n, ++__cur)
591 _Construct_default_a(std::__addressof(*__cur), __alloc);
595 std::_Destroy(__first, __cur, __alloc);
613 _ForwardIterator __cur = __result;
616 for (; __n > 0; --__n, ++__first, ++__cur)
617 std::_Construct(std::__addressof(*__cur), *__first);
618 return __cur;
622 std::_Destroy(__result, __cur);