Home
last modified time | relevance | path

Searched refs:dst_dir (Results 1 - 5 of 5) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_shutil.py473 dst_dir = os.path.join(self.mkdtemp(), 'destination')
475 self.addCleanup(shutil.rmtree, os.path.dirname(dst_dir))
480 shutil.copytree(src_dir, dst_dir)
481 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test.txt')))
482 self.assertTrue(os.path.isdir(os.path.join(dst_dir, 'test_dir')))
483 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test_dir',
485 actual = read_file((dst_dir, 'test.txt'))
487 actual = read_file((dst_dir, 'test_dir', 'test.txt'))
492 dst_dir = self.mkdtemp()
494 self.addCleanup(shutil.rmtree, dst_dir)
[all...]
/third_party/skia/tools/skqp/
H A Dmake_skqp_model.cpp72 const char* dst_dir = argv[2]; in main() local
88 SkASSERT_RELEASE(sk_mkdir(dst_dir)); in main()
90 SkDebugf("Failure: '%s' '%s'\n", src_dir, dst_dir); in main()
93 encode_png(SkStringPrintf("%s/min.png", dst_dir).c_str(), minBitmap.pixmap()); in main()
94 encode_png(SkStringPrintf("%s/max.png", dst_dir).c_str(), maxBitmap.pixmap()); in main()
/third_party/flatbuffers/
H A Dinstall.py38 def move_dir(src_dir, dst_dir):
39 shutil.copytree(src_dir, dst_dir)
/third_party/skia/third_party/externals/freetype/src/tools/
H A Dmake_distribution_archives.py135 dst_dir = os.path.dirname(dst)
136 if not os.path.exists(dst_dir):
137 os.makedirs(dst_dir)
/third_party/node/tools/
H A Dinstall.py322 # Difference is that dst_dir won't be included in shebang lines etc.
323 dst_dir = args[2] if len(args) > 2 else ''
329 install_path = dst_dir + node_prefix + '/'

Completed in 3 milliseconds