HomeSort by relevance Sort by last modified time
    Searched defs:zipfile (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/chromium_org/tools/deep_memory_profiler/tests/
mock_gsutil.py 9 import zipfile namespace
22 zip_file = zipfile.ZipFile(sys.argv[4], 'r')
  /frameworks/webview/chromium/tools/
jar_check.py 27 import zipfile namespace
43 with contextlib.closing(zipfile.ZipFile(jar_path)) as jar:
48 # Zipfile entries with a trailing / are directories, we can ignore these.
  /external/chromium_org/build/android/gn/
zip.py 14 import zipfile namespace
20 with zipfile.ZipFile(output, 'w') as outfile:
  /external/chromium_org/chrome/test/chromedriver/
embed_extension_in_cpp.py 13 import zipfile namespace
27 zipper = zipfile.ZipFile(string_buffer, 'w')
29 zipper.write(f, os.path.basename(f), zipfile.ZIP_STORED)
  /external/chromium_org/components/policy/tools/
make_policy_zip.py 14 import zipfile namespace
75 zip_file = zipfile.ZipFile(options.output, 'w', zipfile.ZIP_DEFLATED)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
workspace.py 33 import zipfile namespace
58 def create_zip(self, zip_path, source_path, zip_class=zipfile.ZipFile):
60 # zip_file = ZipFile(zip_path, 'w')
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
android_systrace_profiler_unittest.py 7 import zipfile namespace
26 self.assertTrue(zipfile.is_zipfile(result))
27 with zipfile.ZipFile(result) as z:
android_systrace_profiler.py 8 import zipfile namespace
65 with zipfile.ZipFile(self._output_path, 'w', zipfile.ZIP_DEFLATED) as z:
  /external/chromium_org/tools/usb_gadget/
package.py 14 import zipfile namespace
28 archive = zipfile.PyZipFile(buf, 'w')
  /build/tools/releasetools/
img_from_target_files 18 Given a target-files zipfile, produces an image zipfile suitable for
41 import zipfile namespace
80 output_zip = zipfile.ZipFile(args[1], "w", compression=zipfile.ZIP_DEFLATED)
img_from_target_files.py 18 Given a target-files zipfile, produces an image zipfile suitable for
41 import zipfile namespace
80 output_zip = zipfile.ZipFile(args[1], "w", compression=zipfile.ZIP_DEFLATED)
add_img_to_target_files 18 Given a target-files zipfile that does not contain images (ie, does
20 add them to the zipfile.
37 import zipfile namespace
252 output_zip = zipfile.ZipFile(filename, "a",
253 compression=zipfile.ZIP_DEFLATED)
  /external/chromium_org/build/android/gyp/
jar_toc.py 24 import zipfile namespace
74 classes = GetClassesInZipFile(zipfile.ZipFile(jar_path))
process_resources.py 18 import zipfile namespace
140 # Python zipfile does not provide a way to replace a file (it just writes
150 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/remoting/host/installer/
build-installer-archive.py 22 import zipfile namespace
58 """Creates a zipfile at zip_path for the given directory.
65 zip = zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED)
155 # We don't use the 'zipfile' module here because it doesn't restore all the
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
upload.py 9 import zipfile namespace
42 file_zip = zipfile.ZipFile(filename_zip, 'w', zipfile.ZIP_DEFLATED)
  /external/chromium_org/tools/profile_chrome/
trace_packager.py 10 import zipfile namespace
38 with zipfile.ZipFile(output, 'w', zipfile.ZIP_DEFLATED) as z:
profiler_unittest.py 8 import zipfile namespace
72 self.assertTrue(zipfile.is_zipfile(result))
73 with zipfile.ZipFile(result) as f:
  /external/chromium_org/tools/telemetry/telemetry/util/
find_dependencies_unittest.py 13 import zipfile namespace
37 with zipfile.ZipFile(zip_path, 'r') as zip_file:
40 # Use unzip instead of Python zipfile to preserve file permissions.
  /external/sepolicy/tools/
post_process_mac_perms 31 import zipfile namespace
39 with zipfile.ZipFile(filename, 'r') as apkzip:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_bdist_dumb.py 5 import zipfile namespace
83 fp = zipfile.ZipFile(os.path.join('dist', base))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_bdist_dumb.py 5 import zipfile namespace
83 fp = zipfile.ZipFile(os.path.join('dist', base))
  /external/chromium_org/remoting/tools/
zip2msi.py 55 import zipfile namespace
61 archive = zipfile.ZipFile(source, 'r')
  /external/chromium_org/remoting/webapp/
build-webapp.py 25 import zipfile namespace
48 """Creates a zipfile at zip_path for the given directory."""
50 zip = zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED)
80 """Does the main work of building the webapp directory and zipfile.
86 zipfile: A string with path to the zipfile to create containing the
258 # Make the zipfile.
  /pdk/build/
pdk_utils.py 20 import os, string, sys, shutil, zipfile namespace
128 if not zipfile.is_zipfile(zip_file_path):
130 zip_file = zipfile.ZipFile(zip_file_path, 'r')

Completed in 927 milliseconds

1 2 3 4