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

1 2 3

  /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)
util.py 16 import zipfile namespace
98 f = zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED)
  /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/native_client_sdk/src/tools/tests/
oshelpers_test.py 12 import zipfile namespace
54 self.zipfile = None
60 if self.zipfile:
61 self.zipfile.close()
76 self.zipfile = zipfile.ZipFile(self.GetTempPath(self.zipname), 'r')
79 self.zipfile.close()
80 self.zipfile = None
83 return self.zipfile.getinfo(oshelpers.OSMakeZipPath(path)
    [all...]
  /development/build/tools/
mk_sources_zip.py 24 import zipfile namespace
48 self.zipfile = None
194 elif p.zipfile is not None:
196 # zipfile is a path. Copy to it.
197 dest_path = os.path.join(p.zipfile, arc_path)
203 # zipfile is a ZipFile object. Compress with it.
204 p.zipfile.write(filepath, arc_path)
226 p.zipfile = p.DST + "_temp_dir"
227 if os.path.exists(p.zipfile)
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/tests/
mock_gsutil.py 9 import zipfile namespace
22 zip_file = zipfile.ZipFile(sys.argv[4], 'r')
  /external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java 160 String zipfile = null; local
162 zipfile = context.getApplicationInfo().sourceDir;
163 Log.i(TAG, "Loading " + library + " from within " + zipfile);
171 if (zipfile != null) {
172 Linker.loadLibraryInZipFile(zipfile, library);
184 if (zipfile != null) {
185 Linker.loadLibraryInZipFile(zipfile, library);
  /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/build/android/gn/
zip.py 14 import zipfile namespace
20 with zipfile.ZipFile(output, 'w') as outfile:
  /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')
  /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)
  /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/
profiler_unittest.py 8 import zipfile namespace
72 self.assertTrue(zipfile.is_zipfile(result))
73 with zipfile.ZipFile(result) as f:
trace_packager.py 10 import zipfile namespace
38 with zipfile.ZipFile(output, 'w', zipfile.ZIP_DEFLATED) as z:
  /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/chromium_org/tools/usb_gadget/
package.py 14 import zipfile namespace
28 archive = zipfile.PyZipFile(buf, 'w')
  /external/chromium_org/chrome/common/extensions/docs/server2/
content_provider_test.py 9 from zipfile import ZipFile
146 zipfile = ZipFile(StringIO(content_and_type.content))
147 content_and_type.content = zipfile.namelist()
156 zipfile = ZipFile(StringIO(content_and_type.content))
157 content_and_type.content = zipfile.namelist()
directory_zipper.py 7 from zipfile import ZipFile
29 with ZipFile(zip_bytes, mode='w') as zip_file:
directory_zipper_test.py 8 from zipfile import ZipFile
35 top_zip = ZipFile(StringIO(self._directory_zipper.Zip('top/').Get()))
43 two_zip = ZipFile(StringIO(self._directory_zipper.Zip('top/two/').Get()))
  /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:
  /device/asus/flo/
releasetools.py 4 def FindRadio(zipfile):
6 return zipfile.read("RADIO/radio.img")
110 def FindDDR(zipfile):
112 return zipfile.read("RADIO/DDR.bin")
  /external/chromium_org/build/android/gyp/util/
build_utils.py 17 import zipfile namespace
200 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
    [all...]

Completed in 845 milliseconds

1 2 3