/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/ |
D | copy_file.pass.cpp | 44 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p)), bool); in TEST_CASE() 45 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, opts)), bool); in TEST_CASE() 46 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, ec)), bool); in TEST_CASE() 47 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, opts, ec)), bool); in TEST_CASE() 48 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p)); in TEST_CASE() 49 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, opts)); in TEST_CASE() 50 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, ec)); in TEST_CASE() 51 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, opts, ec)); in TEST_CASE() 64 TEST_CHECK(fs::copy_file(file, file, copy_options::overwrite_existing, in TEST_CASE() 68 …TEST_CHECK_THROW_RESULT(filesystem_error, Checker, copy_file(file, file, copy_options::overwrite_e… in TEST_CASE() [all …]
|
/external/llvm-project/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/ |
D | copy_file.pass.cpp | 41 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p)), bool); in TEST_CASE() 42 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, opts)), bool); in TEST_CASE() 43 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, ec)), bool); in TEST_CASE() 44 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, opts, ec)), bool); in TEST_CASE() 45 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p)); in TEST_CASE() 46 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, opts)); in TEST_CASE() 47 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, ec)); in TEST_CASE() 48 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, opts, ec)); in TEST_CASE() 61 TEST_CHECK(fs::copy_file(file, file, copy_options::overwrite_existing, in TEST_CASE() 65 …TEST_CHECK_THROW_RESULT(filesystem_error, Checker, copy_file(file, file, copy_options::overwrite_e… in TEST_CASE() [all …]
|
D | copy_file_large.pass.cpp | 66 TEST_CHECK(copy_file(source, dest, ec)); in TEST_CASE()
|
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/posix/ |
D | BUILD | 52 deps = [":copy_file"], 58 name = "copy_file", 63 hdrs = ["copy_file.h"],
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_file_util.py | 6 from distutils.file_util import move_file, write_file, copy_file 79 copy_file(foo, dst_dir) 87 copy_file(self.source, self.target, link='hard') 108 copy_file(self.source, self.target, link='hard')
|
/external/python/cpython3/Lib/distutils/command/ |
D | install_data.py | 52 (out, _) = self.copy_file(f, self.install_dir) 72 (out, _) = self.copy_file(data, dir)
|
D | install_headers.py | 40 (out, _) = self.copy_file(header, self.install_dir)
|
/external/python/cpython2/Lib/distutils/command/ |
D | install_data.py | 54 (out, _) = self.copy_file(f, self.install_dir) 74 (out, _) = self.copy_file(data, dir)
|
D | install_headers.py | 42 (out, _) = self.copy_file(header, self.install_dir)
|
/external/rust/crates/grpcio-sys/grpc/third_party/cares/ |
D | cares.BUILD | 1 load("@bazel_skylib//rules:copy_file.bzl", "copy_file") 91 copy_file( 97 copy_file(
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_file_util.py | 7 from distutils.file_util import move_file, copy_file 92 copy_file(self.source, self.target, link='hard') 108 copy_file(self.source, self.target, link='hard')
|
/external/fonttools/Tests/ufoLib/ |
D | UFOZ_test.py | 29 fs.copy.copy_file(TESTDATA, name, tmp, name) 36 fs.copy.copy_file(TESTDATA, TEST_UFOZ, tmp, TEST_UFOZ)
|
/external/selinux/libsemanage/utils/ |
D | semanage_migrate_store | 20 def copy_file(src, dst): function 74 copy_file(os.path.join(root, name), "%s/%s/hll" % (bottomdir, file)) 124 copy_file(os.path.join(root, name), os.path.join(newstore, newname))
|
/external/python/cpython2/Lib/distutils/ |
D | cmd.py | 354 def copy_file(self, infile, outfile, member in Command 360 return file_util.copy_file( 453 self.copy_file(f, self.install_dir)
|
D | file_util.py | 71 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0, function 215 copy_file(src, dst, verbose=verbose)
|
D | dir_util.py | 124 from distutils.file_util import copy_file 165 copy_file(src_name, dst_name, preserve_mode,
|
/external/llvm-project/lldb/unittests/Target/ |
D | ModuleCacheTest.cpp | 102 std::error_code ec = llvm::sys::fs::copy_file( in TryGetAndPut() 143 ec = llvm::sys::fs::copy_file(s_test_executable, uuid_view.GetCString()); in TEST_F()
|
/external/autotest/client/site_tests/platform_PrinterPpds/ |
D | archiver.py | 136 def copy_file(self, prefix, name, path_file, apply_gzip=False): member in Archiver 167 self.copy_file(prefix, name, path_file, apply_gzip)
|
/external/python/cpython3/Lib/distutils/ |
D | file_util.py | 67 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0, function 213 copy_file(src, dst, verbose=verbose)
|
D | dir_util.py | 120 from distutils.file_util import copy_file 161 copy_file(src_name, dst_name, preserve_mode,
|
/external/tensorflow/tensorflow/tools/pip_package/ |
D | setup.py | 234 self.copy_file(header, extra_dir) 238 return self.copy_file(header, install_dir)
|
/external/python/cpython2/PC/VS9.0/ |
D | build_ssl.py | 35 from distutils.file_util import copy_file 104 copy_file(src, dst, preserve_times=False, update=True)
|
/external/libcxx/include/experimental/ |
D | filesystem | 91 bool copy_file(const path& from, const path& to); 92 bool copy_file(const path& from, const path& to, error_code& ec); 93 bool copy_file(const path& from, const path& to, copy_options option); 94 bool copy_file(const path& from, const path& to, copy_options option,
|
/external/llvm-project/libcxx/include/experimental/ |
D | filesystem | 90 bool copy_file(const path& from, const path& to); 91 bool copy_file(const path& from, const path& to, error_code& ec); 92 bool copy_file(const path& from, const path& to, copy_options option); 93 bool copy_file(const path& from, const path& to, copy_options option,
|
/external/python/pybind11/tools/ |
D | setup_global.py.in | 30 (out, _) = self.copy_file(header, dst)
|