Home
last modified time | relevance | path

Searched refs:archive_name (Results 1 – 21 of 21) sorted by relevance

/external/jsoncpp/devtools/
Dtarball.py17 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/
Darchive_util.py77 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/
Darchive_util.py83 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/
Dtargz.py30 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/
Darchiver.py198 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/
Dplatform_CrosDisksArchive.py97 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/
Dtest_sdist.py431 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)
Dtest_archive_util.py373 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/
Dtest_sdist.py338 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)
Dtest_archive_util.py266 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/
Dpackage.py89 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/
Dshutil.py379 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/
Dshutil.py645 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/
DCompilerRTDarwinUtils.cmake340 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/
Dtest_shutil.py591 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/
D7zC.txt58 Usage: 7zDec <command> <archive_name>
/external/python/cpython2/Doc/library/
Dshutil.rst343 >>> archive_name = os.path.expanduser(os.path.join('~', 'myarchive'))
345 >>> make_archive(archive_name, 'gztar', root_dir)
/external/python/cpython3/Lib/test/
Dtest_shutil.py1173 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/
Dshutil.rst609 >>> archive_name = os.path.expanduser(os.path.join('~', 'myarchive'))
611 >>> make_archive(archive_name, 'gztar', root_dir)
/external/python/setuptools/pkg_resources/
D__init__.py1186 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/
Dpkg_resources.txt1230 ``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