Searched refs:ZipFile (Results 1 - 25 of 56) sorted by relevance

123

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Ddirectory_zipper.py7 from zipfile import ZipFile namespace
29 with ZipFile(zip_bytes, mode='w') as zip_file:
H A Ddirectory_zipper_test.py8 from zipfile import ZipFile namespace
35 top_zip = ZipFile(StringIO(self._directory_zipper.Zip('top/').Get()))
43 two_zip = ZipFile(StringIO(self._directory_zipper.Zip('top/two/').Get()))
H A Dcontent_provider_test.py9 from zipfile import ZipFile namespace
146 zipfile = ZipFile(StringIO(content_and_type.content))
156 zipfile = ZipFile(StringIO(content_and_type.content))
H A Dgithub_file_system.py18 from zipfile import ZipFile, BadZipfile namespace
53 return_zip = ZipFile(StringIO(blob))
104 self._zip_file = Future(value=ZipFile(StringIO(blob)))
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DClassPathIterator.java41 private List<ZipFile> zips = new ArrayList<ZipFile>();
90 for (ZipFile zip : zips) {
119 ZipFile zip = new JarFile(file);
123 ZipFile zip = new ZipFile(file);
144 private final ZipFile zip;
147 ZipIterator(ZipFile zip) {
H A DIoUtil.java25 import java.util.zip.ZipFile;
64 final ZipFile inputZip = new ZipFile(inputFile);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DDexFileFactory.java44 import java.util.zip.ZipFile;
59 ZipFile zipFile = null;
62 zipFile = new ZipFile(dexFile);
/external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
H A DLibraryLoaderHelper.java18 import java.util.zip.ZipFile;
140 ZipFile file = new ZipFile(new File(appInfo.sourceDir), ZipFile.OPEN_READ);
/external/chromium_org/chrome/test/chromedriver/
H A Dembed_extension_in_cpp.py27 zipper = zipfile.ZipFile(string_buffer, 'w')
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dworkspace.py58 def create_zip(self, zip_path, source_path, zip_class=zipfile.ZipFile):
60 # zip_file = ZipFile(zip_path, 'w')
/external/chromium_org/tools/deep_memory_profiler/tests/
H A Dmock_gsutil.py22 zip_file = zipfile.ZipFile(sys.argv[4], 'r')
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dandroid_systrace_profiler_unittest.py27 with zipfile.ZipFile(result) as z:
H A Dandroid_systrace_profiler.py65 with zipfile.ZipFile(self._output_path, 'w', zipfile.ZIP_DEFLATED) as z:
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/
H A Dupload_chromevox_to_webstore.py24 from zipfile import ZipFile namespace
97 with ZipFile(output_path, 'w') as zip:
/external/chromium_org/build/android/gn/
H A Dzip.py20 with zipfile.ZipFile(output, 'w') as outfile:
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dfind_dependencies_unittest.py37 with zipfile.ZipFile(zip_path, 'r') as zip_file:
/external/chromium_org/build/android/gyp/util/
H A Dbuild_utils.py200 with zipfile.ZipFile(zip_path) as z:
219 with zipfile.ZipFile(output, 'w') as outfile:
226 with zipfile.ZipFile(output, 'w') as outfile:
243 with zipfile.ZipFile(output, 'w') as out_zip:
245 with zipfile.ZipFile(in_file, 'r') as in_zip:
/external/chromium_org/build/android/gyp/
H A Djar_toc.py74 classes = GetClassesInZipFile(zipfile.ZipFile(jar_path))
H A Dprocess_resources.py150 with zipfile.ZipFile(zip_path, 'w') as outzip:
161 with zipfile.ZipFile(output_path, 'w') as outzip:
163 with zipfile.ZipFile(z, 'r') as inzip:
/external/chromium_org/components/policy/tools/
H A Dmake_policy_zip.py75 zip_file = zipfile.ZipFile(options.output, 'w', zipfile.ZIP_DEFLATED)
/external/chromium_org/tools/deep_memory_profiler/subcommands/
H A Dupload.py42 file_zip = zipfile.ZipFile(filename_zip, 'w', zipfile.ZIP_DEFLATED)
/external/chromium_org/tools/profile_chrome/
H A Dprofiler_unittest.py73 with zipfile.ZipFile(result) as f:
H A Dtrace_packager.py38 with zipfile.ZipFile(output, 'w', zipfile.ZIP_DEFLATED) as z:
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DDepFindVisitor.java23 import java.util.zip.ZipFile;
/external/sepolicy/tools/
H A Dpost_process_mac_perms39 with zipfile.ZipFile(filename, 'r') as apkzip:

Completed in 2505 milliseconds

123