/openbsd/gnu/llvm/libcxx/include/__algorithm/ |
H A D | copy.h | 31 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 pair<_InIter, _OutIter> __copy(_InIter, … 54 …auto __iters = std::__copy<_AlgPolicy>(_Traits::__local(__first), _Traits::__local(__last), std::m… in operator() 58 …__result = std::__copy<_AlgPolicy>(_Traits::__local(__first), _Traits::__end(__sfirst), std::move(… in operator() 62 …std::__copy<_AlgPolicy>(_Traits::__begin(__sfirst), _Traits::__end(__sfirst), std::move(__result))… in operator() 66 …std::__copy<_AlgPolicy>(_Traits::__begin(__sfirst), _Traits::__local(__last), std::move(__result))… in operator() 88 auto __iters = std::__copy<_AlgPolicy>(__first, __first + __size, __local_first); in operator() 111 __copy(_InIter __first, _Sent __last, _OutIter __result) { in __copy() function 119 return std::__copy<_ClassicAlgPolicy>(__first, __last, __result).second; in copy()
|
H A D | ranges_copy.h | 37 namespace __copy { 44 …auto __ret = std::__copy<_RangeAlgPolicy>(std::move(__first), std::move(__last), std::move(__resul… in operator() 52 …auto __ret = std::__copy<_RangeAlgPolicy>(ranges::begin(__r), ranges::end(__r), std::move(__result… in operator() 59 inline constexpr auto copy = __copy::__fn{};
|
H A D | set_symmetric_difference.h | 45 …auto __ret1 = std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result)… in __set_symmetric_difference() 63 …auto __ret2 = std::__copy<_AlgPolicy>(std::move(__first2), std::move(__last2), std::move(__result)… in __set_symmetric_difference()
|
H A D | set_union.h | 44 …auto __ret1 = std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result)… in __set_union() 59 …auto __ret2 = std::__copy<_AlgPolicy>(std::move(__first2), std::move(__last2), std::move(__result)… in __set_union()
|
H A D | ranges_copy_n.h | 55 auto __ret = std::__copy<_RangeAlgPolicy>(__first, __first + __n, __result); in __go()
|
H A D | set_difference.h | 46 return std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result)); in __set_difference()
|
/openbsd/gnu/llvm/libcxx/include/__format/ |
H A D | formatter_output.h | 103 __out_it.__get_container()->__copy(__str); 107 __out_it.__buffer_->__copy(__str); 118 return __formatter::__copy(basic_string_view{__first, __last}, _VSTD::move(__out_it)); 124 return __formatter::__copy(basic_string_view{__first, __n}, _VSTD::move(__out_it)); 175 __out_it = __formatter::__copy(__begin, __first, _VSTD::move(__out_it)); in __write_using_decimal_separators() 190 __out_it = __formatter::__copy(__begin, __first, _VSTD::move(__out_it)); in __write_using_decimal_separators() 214 __out_it = __formatter::__copy(__first, *__r, _VSTD::move(__out_it)); in __write_using_decimal_separators() 256 return __formatter::__copy(__str, _VSTD::move(__out_it)); 328 __out_it = __formatter::__copy(__first, __exponent, _VSTD::move(__out_it)); 330 __out_it = __formatter::__copy(__exponent, __last, _VSTD::move(__out_it)); [all …]
|
H A D | formatter_floating_point.h | 540 __out_it = __formatter::__copy(__first, __digits, _VSTD::move(__out_it)); 552 __out_it = __formatter::__copy(__first, *__r, _VSTD::move(__out_it)); 566 …__out_it = __formatter::__copy(__result.__radix_point + 1, __result.__exponent, _VSTD::move(__o… 572 __out_it = __formatter::__copy(__result.__exponent, __result.__last, _VSTD::move(__out_it)); 688 return __formatter::__copy( 691 … __formatter::__fill(__formatter::__copy(__buffer.begin(), __result.__exponent, __ctx.out()), 696 …__formatter::__copy(__buffer.begin(), __result.__last, __ctx.out()), __num_trailing_zeros, _CharT(…
|
H A D | buffer.h | 88 _LIBCPP_HIDE_FROM_ABI void __copy(basic_string_view<_InCharT> __str) { in __copy() function 545 _LIBCPP_HIDE_FROM_ABI void __copy(basic_string_view<_InCharT> __str) {
|
H A D | formatter_integral.h | 247 __out_it = __formatter::__copy(__begin, __first, _VSTD::move(__out_it));
|
/openbsd/gnu/llvm/libcxx/include/__filesystem/ |
H A D | operations.h | 41 _LIBCPP_FUNC_VIS void __copy(const path& __from, const path& __to, copy_options __opt, error_code* … 75 inline _LIBCPP_HIDE_FROM_ABI void copy(const path& __from, const path& __to) { __copy(__from, __to,… in copy() 76 …_ABI void copy(const path& __from, const path& __to, error_code& __ec) { __copy(__from, __to, copy… in copy() 77 …BI void copy(const path& __from, const path& __to, copy_options __opt) { __copy(__from, __to, __op… in copy() 78 … path& __from, const path& __to, copy_options __opt, error_code& __ec) { __copy(__from, __to, __op… in copy()
|
/openbsd/gnu/lib/libstdc++/libstdc++/include/bits/ |
H A D | stl_algobase.h | 223 __copy(_InputIter __first, _InputIter __last, in __copy() function 234 __copy(_RandomAccessIter __first, _RandomAccessIter __last, in __copy() function 260 { return __copy(__first, __last, __result, __iterator_category(__first)); } in __copy_aux2() 266 { return __copy(__first, __last, __result, __iterator_category(__first)); } in __copy_aux2()
|
/openbsd/gnu/gcc/libstdc++-v3/include/bits/ |
H A D | stl_algobase.h | 261 struct __copy 274 struct __copy<_BoolType, random_access_iterator_tag> 292 struct __copy<true, random_access_iterator_tag> 315 return std::__copy<__simple, _Category>::copy(__first, __last, __result);
|
/openbsd/gnu/llvm/libcxx/include/ |
H A D | any | 367 __copy(*__this, *__other); 404 static void __copy(any const & __this, any & __dest) { 451 __copy(*__this, *__other); 493 static void __copy(any const & __this, any & __dest) {
|
/openbsd/gnu/llvm/libcxx/src/filesystem/ |
H A D | operations.cpp | 730 void __copy(const path& from, const path& to, copy_options options, in __copy() function 807 __copy(it->path(), to / it->path().filename(), in __copy()
|
/openbsd/gnu/lib/libstdc++/libstdc++/ |
H A D | ChangeLog-2000 | 2335 * ext/stl_hashtable.h (_M_copy_from): Change __copy to __local_copy.
|