Home | History | Annotate | Download | only in bits

Lines Matching refs:__cur

71 	  _ForwardIterator __cur = __result;
74 for (; __first != __last; ++__first, ++__cur)
75 std::_Construct(std::__addressof(*__cur), *__first);
76 return __cur;
80 std::_Destroy(__result, __cur);
137 _ForwardIterator __cur = __first;
140 for (; __cur != __last; ++__cur)
141 std::_Construct(std::__addressof(*__cur), __x);
145 std::_Destroy(__first, __cur);
197 _ForwardIterator __cur = __first;
200 for (; __n > 0; --__n, ++__cur)
201 std::_Construct(std::__addressof(*__cur), __x);
205 std::_Destroy(__first, __cur);
259 _ForwardIterator __cur = __result;
263 for (; __first != __last; ++__first, ++__cur)
264 __traits::construct(__alloc, std::__addressof(*__cur), *__first);
265 return __cur;
269 std::_Destroy(__result, __cur, __alloc);
309 _ForwardIterator __cur = __first;
313 for (; __cur != __last; ++__cur)
314 __traits::construct(__alloc, std::__addressof(*__cur), __x);
318 std::_Destroy(__first, __cur, __alloc);
335 _ForwardIterator __cur = __first;
339 for (; __n > 0; --__n, ++__cur)
340 __traits::construct(__alloc, std::__addressof(*__cur), __x);
344 std::_Destroy(__first, __cur, __alloc);
476 _ForwardIterator __cur = __first;
479 for (; __cur != __last; ++__cur)
480 std::_Construct(std::__addressof(*__cur));
484 std::_Destroy(__first, __cur);
511 _ForwardIterator __cur = __first;
514 __cur)
515 std::_Construct(std::__addressof(*__cur));
519 std::_Destroy(__first, __cur);
583 _ForwardIterator __cur = __first;
587 for (; __cur != __last; ++__cur)
588 __traits::construct(__alloc, std::__addressof(*__cur));
592 std::_Destroy(__first, __cur, __alloc);
613 _ForwardIterator __cur = __first;
617 for (; __n > 0; --__n, ++__cur)
618 __traits::construct(__alloc, std::__addressof(*__cur));
622 std::_Destroy(__first, __cur, __alloc);
640 _ForwardIterator __cur = __result;
643 for (; __n > 0; --__n, ++__first, ++__cur)
644 std::_Construct(std::__addressof(*__cur), *__first);
645 return __cur;
649 std::_Destroy(__result, __cur);