/third_party/python/Lib/test/ |
D | test_zipfile.py | 63 with zipfile.ZipFile(f, "w", **kwargs) as zipfp: 75 with zipfile.ZipFile(f, "r", compression) as zipfp: 133 with zipfile.ZipFile(f, "r", compression) as zipfp: 160 with zipfile.ZipFile(path, "r", self.compression) as zipfp: 167 with zipfile.ZipFile(f, "r", compression) as zipfp: 186 with zipfile.ZipFile(f, "r") as zipfp, \ 205 with zipfile.ZipFile(f, "r") as zipfp, \ 225 with zipfile.ZipFile(f, "r") as zipfp, \ 250 with zipfile.ZipFile(f, "r") as zipfp: 264 with zipfile.ZipFile(f, "r") as zipfp: [all …]
|
D | test_zipfile64.py | 40 with zipfile.ZipFile(f, "w", compression) as zipfp: 58 with zipfile.ZipFile(f, "r", compression) as zipfp: 96 with zipfile.ZipFile(TESTFN, mode="w", allowZip64=True) as zipf: 103 with zipfile.ZipFile(TESTFN, mode="r") as zipf2: 110 with zipfile.ZipFile(TESTFN, mode="w", allowZip64=False) as zipf: 120 with zipfile.ZipFile(TESTFN, mode="a", allowZip64=False) as zipf: 127 with zipfile.ZipFile(TESTFN, mode="a", allowZip64=True) as zipf: 135 with zipfile.ZipFile(TESTFN, mode="r") as zipf2:
|
D | test_zipapp.py | 53 with zipfile.ZipFile(target, 'r') as z: 70 with zipfile.ZipFile(target, 'r') as z: 90 with zipfile.ZipFile(target, 'r') as z: 114 with zipfile.ZipFile(target, 'r') as z: 144 with zipfile.ZipFile(str(target), 'r') as z: 162 with zipfile.ZipFile(str(target), 'r') as z: 298 with zipfile.ZipFile(new_target, 'r') as z:
|
D | test_zipimport.py | 16 from zipfile import ZipFile, ZipInfo, ZIP_STORED, ZIP_DEFLATED 113 with ZipFile(zipName, "w") as z: 448 with ZipFile(TEMP_ZIP, "w") as z: 520 with ZipFile(TEMP_ZIP, "w") as z: 535 with ZipFile(TEMP_ZIP, "a") as z: 561 with ZipFile(TEMP_ZIP, "w") as z: 624 with ZipFile(TEMP_ZIP, "w") as z: 736 with ZipFile(filename, "w") as z: 747 with ZipFile(filename, "w") as z:
|
D | test_zipimport_support.py | 126 with zipfile.ZipFile(zip_name, 'a') as z: 130 with zipfile.ZipFile(zip_name, 'r') as zip_file:
|
/third_party/python/Doc/library/ |
D | zipfile.rst | 48 .. class:: ZipFile 74 methods of :class:`ZipFile` objects. Most users of the :mod:`zipfile` module 137 ZipFile Objects 141 .. class:: ZipFile(file, mode='r', compression=ZIP_STORED, allowZip64=True, \ 190 ZipFile is also a context manager and therefore supports the 194 with ZipFile('spam.zip', 'w') as myzip: 198 Added the ability to use :class:`ZipFile` as a context manager. 224 .. method:: ZipFile.close() 230 .. method:: ZipFile.getinfo(name) 237 .. method:: ZipFile.infolist() [all …]
|
/third_party/skia/resources/sksl/ |
D | update_fuzzer.py | 28 with zipfile.ZipFile(pathToPrimaryZip.name, 'w', zipfile.ZIP_DEFLATED) as primaryArchive: 29 with zipfile.ZipFile(pathToPaddedZip.name, 'w', zipfile.ZIP_DEFLATED) as paddedArchive:
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | APIData.java | 30 import java.util.zip.ZipFile; 70 ZipFile zf = null; in read() 74 zf = new ZipFile(file); in read()
|
/third_party/skia/infra/bots/ |
D | zip_utils.py | 33 with zipfile.ZipFile(zip_file, 'w', zipfile.ZIP_DEFLATED, True) as z: 65 with zipfile.ZipFile(zip_file, 'r', zipfile.ZIP_DEFLATED, True) as z:
|
/third_party/flutter/skia/infra/bots/ |
D | zip_utils.py | 32 with zipfile.ZipFile(zip_file, 'w', zipfile.ZIP_DEFLATED, True) as z: 64 with zipfile.ZipFile(zip_file, 'r', zipfile.ZIP_DEFLATED, True) as z:
|
/third_party/skia/third_party/externals/freetype/tests/scripts/ |
D | download-test-fonts.py | 151 archive: zipfile.ZipFile, argument 235 archive = zipfile.ZipFile(io.BytesIO(download_file(archive_url)))
|
/third_party/python/Lib/test/ziptestdata/ |
D | header.sh | 15 with zipfile.ZipFile(filename, mode='r') as exe_zip:
|
D | exe_with_z64 | 15 with zipfile.ZipFile(filename, mode='r') as exe_zip:
|
D | exe_with_zip | 15 with zipfile.ZipFile(filename, mode='r') as exe_zip:
|
/third_party/python/Lib/distutils/ |
D | archive_util.py | 163 zip = zipfile.ZipFile(zip_filename, "w", 166 zip = zipfile.ZipFile(zip_filename, "w",
|
/third_party/python/Lib/test/test_importlib/ |
D | update-zips.py | 36 with zipfile.ZipFile(zfpath, 'w') as zf:
|
/third_party/skia/bin/ |
D | fetch-gn | 34 with zipfile.ZipFile(gnzip, 'r') as f:
|
D | fetch-sk | 88 with zipfile.ZipFile(skzip, 'r') as f:
|
/third_party/python/Lib/test/support/ |
D | script_helper.py | 224 with zipfile.ZipFile(zip_name, 'w') as zip_file: 262 with zipfile.ZipFile(zip_name, 'w') as zip_file:
|
/third_party/flutter/engine/flutter/tools/android_support/ |
D | download_android_support.py | 35 aar_zip = zipfile.ZipFile(cStringIO.StringIO(downloaded_file))
|
/third_party/python/Lib/distutils/tests/ |
D | test_archive_util.py | 249 with zipfile.ZipFile(tarball) as zf: 257 zipfile_class = zipfile.ZipFile 275 with zipfile.ZipFile(tarball) as zf:
|
D | test_bdist_dumb.py | 81 fp = zipfile.ZipFile(os.path.join('dist', base))
|
/third_party/python/PCbuild/ |
D | get_external.py | 28 with zipfile.ZipFile(os.fspath(zip_path)) as zf:
|
/third_party/python/Tools/peg_generator/scripts/ |
D | test_pypi_packages.py | 44 zipfile.ZipFile(filename).extractall(savedir)
|
/third_party/boost/libs/unordered/ci/ |
D | download-boost-snapshot.py | 55 zip = zipfile.ZipFile(filename, "r")
|