Lines Matching refs:copy_options

70     enum class copy_options;
85 void copy(const path& from, const path& to, copy_options options);
86 void copy(const path& from, const path& to, copy_options options,
91 bool copy_file(const path& from, const path& to, copy_options option);
92 bool copy_file(const path& from, const path& to, copy_options option,
326 enum class _LIBCPP_ENUM_VIS copy_options : unsigned short
342 inline _LIBCPP_CONSTEXPR copy_options operator&(copy_options _LHS, copy_options _RHS)
343 { return static_cast<copy_options>(static_cast<unsigned short>(_LHS) & static_cast<unsigned short>(…
346 inline _LIBCPP_CONSTEXPR copy_options operator|(copy_options _LHS, copy_options _RHS)
347 { return static_cast<copy_options>(static_cast<unsigned short>(_LHS) | static_cast<unsigned short>(…
350 inline _LIBCPP_CONSTEXPR copy_options operator^(copy_options _LHS, copy_options _RHS)
351 { return static_cast<copy_options>(static_cast<unsigned short>(_LHS) ^ static_cast<unsigned short>(…
354 inline _LIBCPP_CONSTEXPR copy_options operator~(copy_options _LHS)
355 { return static_cast<copy_options>(~static_cast<unsigned short>(_LHS)); }
358 inline copy_options& operator&=(copy_options& _LHS, copy_options _RHS)
362 inline copy_options& operator|=(copy_options& _LHS, copy_options _RHS)
366 inline copy_options& operator^=(copy_options& _LHS, copy_options _RHS)
1241 void __copy(const path& __from, const path& __to, copy_options __opt,
1244 bool __copy_file(const path& __from, const path& __to, copy_options __opt,
1347 __copy(__from, __to, copy_options::none);
1352 __copy(__from, __to, copy_options::none, &__ec);
1356 void copy(const path& __from, const path& __to, copy_options __opt) {
1362 copy_options __opt, error_code& __ec) _NOEXCEPT {
1368 return __copy_file(__from, __to, copy_options::none);
1373 return __copy_file(__from, __to, copy_options::none, &__ec);
1377 bool copy_file(const path& __from, const path& __to, copy_options __opt) {
1383 copy_options __opt, error_code& __ec) _NOEXCEPT {