/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_tarfile.py | 11 import tarfile namespace 45 self.tar = tarfile.open(self.tarname, mode=self.mode, encoding="iso8859-1") 165 # This test checks if tarfile.open() is able to open an empty tar 168 tarfile.open(tmpname, self.mode.replace("r", "w")).close() 170 tar = tarfile.open(tmpname, self.mode) 172 except tarfile.ReadError: 173 self.fail("tarfile.open() failed on empty archive") 178 # This test guarantees that tarfile.open() does not treat an empty 181 self.assertRaises(tarfile.ReadError, tarfile.open, tmpname, self.mode [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_tarfile.py | 11 import tarfile namespace 45 self.tar = tarfile.open(self.tarname, mode=self.mode, encoding="iso8859-1") 165 # This test checks if tarfile.open() is able to open an empty tar 168 tarfile.open(tmpname, self.mode.replace("r", "w")).close() 170 tar = tarfile.open(tmpname, self.mode) 172 except tarfile.ReadError: 173 self.fail("tarfile.open() failed on empty archive") 178 # This test guarantees that tarfile.open() does not treat an empty 181 self.assertRaises(tarfile.ReadError, tarfile.open, tmpname, self.mode [all...] |
/external/chromium_org/tools/export_tarball/ |
export_v8_tarball.py | 22 import tarfile namespace 69 class MyTarFile(tarfile.TarFile): 88 tarfile.TarFile.add(self, name, arcname=arcname, recursive=recursive)
|
export_tarball.py | 23 import tarfile namespace 89 class MyTarFile(tarfile.TarFile): 113 tarfile.TarFile.add(self, name, arcname=arcname, recursive=recursive)
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
nacl-mono-archive.py | 9 import tarfile namespace 21 help='Tarfile path', 52 tar_file = tarfile.open(options.tar_path, mode='w:bz2', dereference=True)
|
build_sdk.py | 214 tarfile = GetNewlibToolchain() 215 buildbot_common.Run([sys.executable, CYGTAR, '-C', tmpdir, '-xf', tarfile], 234 tarfile = GetGlibcToolchain() 236 buildbot_common.Run([sys.executable, CYGTAR, '-C', tmpdir, '-xf', tarfile], 249 tarfile = GetPNaClToolchain() 251 buildbot_common.Run([sys.executable, CYGTAR, '-C', tmpdir, '-xf', tarfile], 737 def BuildStepTarBundle(pepper_ver, tarfile): 739 buildbot_common.MakeDir(os.path.dirname(tarfile)) 740 buildbot_common.Run([sys.executable, CYGTAR, '-C', OUT_DIR, '-cjf', tarfile, 744 def GetManifestBundle(pepper_ver, chrome_revision, nacl_revision, tarfile, [all...] |
nacl-mono-builder.py | 9 import tarfile namespace 69 tar_file = tarfile.open(os.path.join(MONO_BUILD_DIR, sdk_file))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
tarfile.py | 4 # tarfile.py 61 # from tarfile import * 62 __all__ = ["TarFile", "TarInfo", "is_tarfile", "TarError"] 79 LNKTYPE = "1" # link (inside tarfile) 101 # tarfile constants 103 # File types that tarfile supports: 314 Used by TarFile.list() 388 """Class that serves as an adapter between TarFile and 783 Is returned by TarFile.extractfile(). 787 def __init__(self, tarfile, tarinfo) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
tarfile.py | 4 # tarfile.py 61 # from tarfile import * 62 __all__ = ["TarFile", "TarInfo", "is_tarfile", "TarError"] 79 LNKTYPE = "1" # link (inside tarfile) 101 # tarfile constants 103 # File types that tarfile supports: 314 Used by TarFile.list() 388 """Class that serves as an adapter between TarFile and 783 Is returned by TarFile.extractfile(). 787 def __init__(self, tarfile, tarinfo) [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
rietveld_patcher.py | 6 import tarfile namespace 46 tar = tarfile.open(fileobj=StringIO(tarball_result.content)) 47 except tarfile.TarError as e: 60 except tarfile.TarError as e:
|
/external/grub/util/ |
mkbimage | 25 tarfile= 214 tarfile="$1"; 215 [ -z "$tarfile" ] && error missing_argument;; 230 [ ! "$tarfile" ] && error missing_argument; 231 [ ! -s "$tarfile" ] && error wrong_file; 270 suffix=`echo "$tarfile" | sed -n 's/^.*\.\([targbz2]\{2,3\}\)$/\1/p'` 285 file_size=`$decompress $tarfile | wc -c | tr -d ' '` 337 # cylinders of $cyl_size mandatory to put the files stocked in the $tarfile 363 $decompress $tarfile | tar -C ${image}1 $debug -xf -
|
/external/chromium_org/tools/telemetry/docs/ |
telemetry.page.cloud_storage.html | 25 <a href="tarfile.html">tarfile</a><br>
|
/external/chromium_org/v8/test/mozilla/ |
testcfg.py | 32 import tarfile namespace 139 with tarfile.open(archive_file, "r:gz") as tar: 155 with tarfile.open(archive_file, "w:gz") as tar:
|
/external/chromium_org/v8/test/benchmarks/ |
testcfg.py | 32 import tarfile namespace 149 with tarfile.open(archive_file, "r:gz") as tar: 160 with tarfile.open(archive_file, "w:gz") as tar:
|
/bionic/libc/tools/zoneinfo/ |
update-tzdata.py | 11 import tarfile namespace 121 tar = tarfile.open(data_filename, 'r')
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
cloud_storage.py | 13 import tarfile namespace 57 with tarfile.open(fileobj=cStringIO.StringIO(response.read())) as tar_file:
|
/external/chromium_org/v8/test/test262/ |
testcfg.py | 32 import tarfile namespace 111 archive = tarfile.open(archive_name, "r:bz2")
|
/external/v8/test/test262/ |
testcfg.py | 34 import tarfile namespace 119 archive = tarfile.open(archive_name, 'r:bz2')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_archive_util.py | 8 import tarfile namespace 97 tar = tarfile.open(path) 275 archive = tarfile.open(archive_name)
|
test_sdist.py | 3 import tarfile namespace 347 archive = tarfile.open(archive_name) 365 archive = tarfile.open(archive_name) 500 archive = tarfile.open(archive_name)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_archive_util.py | 8 import tarfile namespace 97 tar = tarfile.open(path) 275 archive = tarfile.open(archive_name)
|
test_sdist.py | 3 import tarfile namespace 347 archive = tarfile.open(archive_name) 365 archive = tarfile.open(archive_name) 500 archive = tarfile.open(archive_name)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
archive_util.py | 84 import tarfile # late import so Python build itself doesn't break namespace 101 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
archive_util.py | 84 import tarfile # late import so Python build itself doesn't break namespace 101 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jar | |