Home
last modified time | relevance | path

Searched refs:update_existing (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/fs.enum/
H A Denum.copy_options.pass.cpp35 typedef check_bitmask_type<E, E::skip_existing, E::update_existing> BitmaskTester; in main()
46 E::update_existing == ME(4), in main()
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/
H A Dcopy_file.pass.cpp170 fs::copy_file(from, older, copy_options::update_existing, ec) == true); in TEST_CASE()
175 fs::copy_file(from, newer, copy_options::update_existing, ec) == false); in TEST_CASE()
/llvm-project-15.0.7/libcxx/include/__filesystem/
H A Dcopy_options.h30 update_existing = 4, enumerator
/llvm-project-15.0.7/libcxx/src/filesystem/
H A Doperations.cpp917 const bool update_existing = bool(copy_options::update_existing & options); in __copy_file() local
937 if (to_exists && update_existing) { in __copy_file()