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);
129 _ForwardIterator __cur = __first;
132 for (; __cur != __last; ++__cur)
133 std::_Construct(std::__addressof(*__cur), __x);
137 std::_Destroy(__first, __cur);
183 _ForwardIterator __cur = __first;
186 for (; __n > 0; --__n, ++__cur)
187 std::_Construct(std::__addressof(*__cur), __x);
191 std::_Destroy(__first, __cur);
239 _ForwardIterator __cur = __result;
243 for (; __first != __last; ++__first, ++__cur)
244 __traits::construct(__alloc, std::__addressof(*__cur), *__first);
245 return __cur;
249 std::_Destroy(__result, __cur, __alloc);
289 _ForwardIterator __cur = __first;
293 for (; __cur != __last; ++__cur)
294 __traits::construct(__alloc, std::__addressof(*__cur), __x);
298 std::_Destroy(__first, __cur, __alloc);
315 _ForwardIterator __cur = __first;
319 for (; __n > 0; --__n, ++__cur)
320 __traits::construct(__alloc, std::__addressof(*__cur), __x);
324 std::_Destroy(__first, __cur, __alloc);
456 _ForwardIterator __cur = __first;
459 for (; __cur != __last; ++__cur)
460 std::_Construct(std::__addressof(*__cur));
464 std::_Destroy(__first, __cur);
491 _ForwardIterator __cur = __first;
494 for (; __n > 0; --__n, ++__cur)
495 std::_Construct(std::__addressof(*__cur));
499 std::_Destroy(__first, __cur);
557 _ForwardIterator __cur = __first;
561 for (; __cur != __last; ++__cur)
562 __traits::construct(__alloc, std::__addressof(*__cur));
566 std::_Destroy(__first, __cur, __alloc);
587 _ForwardIterator __cur = __first;
591 for (; __n > 0; --__n, ++__cur)
592 __traits::construct(__alloc, std::__addressof(*__cur));
596 std::_Destroy(__first, __cur, __alloc);
614 _ForwardIterator __cur = __result;
617 for (; __n > 0; --__n, ++__first, ++__cur)
618 std::_Construct(std::__addressof(*__cur), *__first);
619 return __cur;
623 std::_Destroy(__result, __cur);