/external/jsoncpp/devtools/ |
D | tarball.py | 17 def archive_name( path ): function 21 archive_name = path[len(common_path):] 22 if os.path.isabs( archive_name ): 23 archive_name = archive_name[1:] 24 return os.path.join( prefix_dir, archive_name ) 29 path_in_tar = archive_name(path) 39 path_in_tar = archive_name(source_path)
|
/external/python/cpython2/Lib/distutils/ |
D | archive_util.py | 77 archive_name = base_name + '.tar' 79 archive_name += compress_ext.get(compress, '') 81 mkpath(os.path.dirname(archive_name), dry_run=dry_run) 101 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress]) 111 compressed_name = archive_name + compress_ext[compress] 113 cmd = [compress, archive_name, compressed_name] 115 cmd = [compress, '-f', archive_name] 119 return archive_name
|
/external/python/cpython3/Lib/distutils/ |
D | archive_util.py | 83 archive_name = base_name + '.tar' 85 archive_name += compress_ext.get(compress, '') 87 mkpath(os.path.dirname(archive_name), dry_run=dry_run) 107 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress]) 117 compressed_name = archive_name + compress_ext[compress] 119 cmd = [compress, archive_name, compressed_name] 121 cmd = [compress, '-f', archive_name] 125 return archive_name
|
/external/jsoncpp/scons-tools/ |
D | targz.py | 30 def archive_name( path ): function 33 archive_name = path[len(common_path):] 34 return archive_name 40 tar.add(path, archive_name(path) ) 51 tar.add(source_path, archive_name(source_path) ) # filename, arcname
|
/external/autotest/client/site_tests/platform_PrinterPpds/ |
D | archiver.py | 198 archive_name = self._filenames_prefixes[prefix][0] 200 self._archives_names[archive_name][0] -= 1 201 self._archives_names[archive_name][1] += filenames 202 if self._archives_names[archive_name][0] == 0: 204 filenames = self._archives_names[archive_name][1] 209 argv = ['tar', 'cJf', 'archive_' + archive_name + '.tar.xz']
|
/external/autotest/client/site_tests/platform_CrosDisksArchive/ |
D | platform_CrosDisksArchive.py | 97 archive_name = 'test.' + archive_type 98 archive_path = os.path.join(image.mount_dir, archive_name) 112 archive_path = os.path.join(result['mount_path'], archive_name) 113 expected_mount_path = os.path.join('/media/archive', archive_name)
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_sdist.py | 431 archive_name = join(self.tmp_dir, 'dist', 'fake-1.0.tar.gz') 432 archive = tarfile.open(archive_name) 458 archive_name = join(self.tmp_dir, 'dist', 'fake-1.0.tar.gz') 459 archive = tarfile.open(archive_name) 476 archive_name = join(self.tmp_dir, 'dist', 'fake-1.0.tar.gz') 477 archive = tarfile.open(archive_name)
|
D | test_archive_util.py | 373 archive_name = make_tarball(base_name, 'dist', compress=None, 379 self.assertTrue(os.path.exists(archive_name)) 382 archive = tarfile.open(archive_name)
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_sdist.py | 338 archive_name = join(self.tmp_dir, 'dist', 'fake-1.0.tar.gz') 339 archive = tarfile.open(archive_name) 356 archive_name = join(self.tmp_dir, 'dist', 'fake-1.0.tar.gz') 357 archive = tarfile.open(archive_name) 491 archive_name = join(self.tmp_dir, 'dist', 'fake-1.0.tar.gz') 492 archive = tarfile.open(archive_name)
|
D | test_archive_util.py | 266 archive_name = make_tarball(base_name, 'dist', compress=None, 272 self.assertTrue(os.path.exists(archive_name)) 275 archive = tarfile.open(archive_name)
|
/external/v8/tools/clang/scripts/ |
D | package.py | 89 def GsutilArchiveExists(archive_name, platform): argument 92 (platform, archive_name)] 96 def MaybeUpload(args, archive_name, platform): argument 98 '%s.tgz' % archive_name, 100 (platform, archive_name)] 102 print 'Uploading %s to Google Cloud Storage...' % archive_name
|
/external/python/cpython2/Lib/ |
D | shutil.py | 379 archive_name = base_name + '.tar' + compress_ext 380 archive_dir = os.path.dirname(archive_name) 408 tar = tarfile.open(archive_name, 'w|%s' % tar_compression) 414 return archive_name
|
/external/python/cpython3/Lib/ |
D | shutil.py | 645 archive_name = base_name + '.tar' + compress_ext 646 archive_dir = os.path.dirname(archive_name) 671 tar = tarfile.open(archive_name, 'w|%s' % tar_compression) 677 return archive_name
|
/external/compiler-rt/cmake/Modules/ |
D | CompilerRTDarwinUtils.cmake | 340 set(archive_name clang_rt.cc_kext_${os}) variable 342 set(archive_name clang_rt.cc_kext) variable 344 darwin_lipo_libs(${archive_name}
|
/external/python/cpython2/Lib/test/ |
D | test_shutil.py | 591 archive_name = make_archive(base_name, 'gztar', root_dir, 'dist', 595 self.assertTrue(os.path.isfile(archive_name)) 598 archive = tarfile.open(archive_name)
|
/external/lzma/DOC/ |
D | 7zC.txt | 58 Usage: 7zDec <command> <archive_name>
|
/external/python/cpython2/Doc/library/ |
D | shutil.rst | 343 >>> archive_name = os.path.expanduser(os.path.join('~', 'myarchive')) 345 >>> make_archive(archive_name, 'gztar', root_dir)
|
/external/python/cpython3/Lib/test/ |
D | test_shutil.py | 1173 archive_name = make_archive(base_name, 'gztar', root_dir, 'dist', 1177 self.assertTrue(os.path.isfile(archive_name)) 1180 archive = tarfile.open(archive_name)
|
/external/python/cpython3/Doc/library/ |
D | shutil.rst | 609 >>> archive_name = os.path.expanduser(os.path.join('~', 'myarchive')) 611 >>> make_archive(archive_name, 'gztar', root_dir)
|
/external/python/setuptools/pkg_resources/ |
D | __init__.py | 1186 def get_cache_path(self, archive_name, names=()): argument 1200 target_path = os.path.join(extract_path, archive_name + '-tmp', *names)
|
/external/python/setuptools/docs/ |
D | pkg_resources.txt | 1230 ``get_cache_path(archive_name, names=())`` 1231 Return absolute location in cache for `archive_name` and `names` 1234 not already exist. `archive_name` should be the base filename of the
|