HomeSort by relevance Sort by last modified time
    Searched refs:ZipFile (Results 76 - 100 of 163) sorted by null

1 2 34 5 6 7

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
script_helper.py 14 import zipfile namespace
17 # fail, which, in turn, means that zipfile cannot be imported
125 zip_file = zipfile.ZipFile(zip_name, 'w')
131 # zip_file = zipfile.ZipFile(zip_name, 'r')
157 zip_file = zipfile.ZipFile(zip_name, 'w')
166 # zip_file = zipfile.ZipFile(zip_name, 'r'
    [all...]
test_zipimport_support.py 10 import zipfile namespace
120 z = zipfile.ZipFile(zip_name, 'a')
125 zip_file = zipfile.ZipFile(zip_name, 'r')
test_zipimport.py 18 from zipfile import ZipFile, ZipInfo, ZIP_STORED, ZIP_DEFLATED
70 z = ZipFile(TEMP_ZIP, "w")
80 # Prepend 'stuff' to the start of the zipfile
208 z = ZipFile(TEMP_ZIP, "w")
252 z = ZipFile(TEMP_ZIP, "w")
286 z = ZipFile(TEMP_ZIP, "w")
312 # try importing from a zipfile which contains additional
test_pkgutil.py 10 import zipfile namespace
62 z = zipfile.ZipFile(zip_file, 'w')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
script_helper.py 14 import zipfile namespace
17 # fail, which, in turn, means that zipfile cannot be imported
125 zip_file = zipfile.ZipFile(zip_name, 'w')
131 # zip_file = zipfile.ZipFile(zip_name, 'r')
157 zip_file = zipfile.ZipFile(zip_name, 'w')
166 # zip_file = zipfile.ZipFile(zip_name, 'r'
    [all...]
test_zipimport_support.py 10 import zipfile namespace
120 z = zipfile.ZipFile(zip_name, 'a')
125 zip_file = zipfile.ZipFile(zip_name, 'r')
test_zipimport.py 18 from zipfile import ZipFile, ZipInfo, ZIP_STORED, ZIP_DEFLATED
70 z = ZipFile(TEMP_ZIP, "w")
80 # Prepend 'stuff' to the start of the zipfile
208 z = ZipFile(TEMP_ZIP, "w")
252 z = ZipFile(TEMP_ZIP, "w")
286 z = ZipFile(TEMP_ZIP, "w")
312 # try importing from a zipfile which contains additional
test_pkgutil.py 10 import zipfile namespace
62 z = zipfile.ZipFile(zip_file, 'w')
  /frameworks/base/core/java/android/os/
RecoverySystem.java 45 import java.util.zip.ZipFile;
102 ZipFile zip = new ZipFile(keystore);
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmGeneratorTest.java 47 import java.util.zip.ZipFile;
310 ZipFile zip = new ZipFile(jarPath);
  /libcore/luni/src/test/java/libcore/java/net/
OldJarURLConnectionTest.java 39 import java.util.zip.ZipFile;
193 ZipFile jf1 = con1.getJarFile();
195 ZipFile jf2 = con2.getJarFile();
  /external/chromium_org/chrome/test/chromedriver/
util.py 16 import zipfile namespace
98 f = zipfile.ZipFile(zip_path, '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:
  /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/chrome/common/extensions/docs/server2/
new_github_file_system.py 10 from zipfile import ZipFile
39 '''A view of a ZipFile with a more convenient interface which ignores the
48 zipball = ZipFile(StringIO(blob))
new_github_file_system_test.py 13 from zipfile import ZipFile
33 'zipfile/': '',
34 'zipfile/hello.txt': 'world',
35 'zipfile/readme': 'test zip',
36 'zipfile/dir/file1': 'contents',
37 'zipfile/dir/file2': 'more contents'
72 self.files['zipfile/hello.txt'] = fake_data
73 self.files['zipfile/new-file'] = fake_data
74 self.files['zipfile/dir/file1'] = fake_dat
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
JarFileTest.java 55 import java.util.zip.ZipFile;
242 ZipFile.OPEN_READ);
251 ZipFile.OPEN_READ);
259 ZipFile.OPEN_READ | ZipFile.OPEN_DELETE + 33);
726 JarFile jarFile = new JarFile(file, true, ZipFile.OPEN_READ);
    [all...]
  /build/tools/releasetools/
sign_target_files_apks 18 Signs all the APK files in a target-files zipfile, producing a new
83 import zipfile namespace
379 # put into a zipfile system/etc/security/otacerts.zip.
383 certs_zip = zipfile.ZipFile(tempfile, "w")
469 input_zip = zipfile.ZipFile(args[0], "r")
470 output_zip = zipfile.ZipFile(args[1], "w")
  /frameworks/base/tools/aapt/
Command.cpp 55 ZipFile* openReadOnly(const char* fileName)
57 ZipFile* zip;
60 zip = new ZipFile;
61 result = zip->open(fileName, ZipFile::kOpenReadOnly);
84 ZipFile* openReadWrite(const char* fileName, bool okayToCreate)
86 ZipFile* zip = NULL;
90 flags = ZipFile::kOpenReadWrite;
92 flags |= ZipFile::kOpenCreate;
95 zip = new ZipFile;
144 ZipFile* zip = NULL
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmAnalyzer.java 43 import java.util.zip.ZipFile;
139 ZipFile zip = new ZipFile(jarPath);
    [all...]
DependencyFinder.java 44 import java.util.zip.ZipFile;
157 ZipFile zip = new ZipFile(jarPath);
  /external/chromium_org/tools/real_world_impact/
real_world_impact.py 37 from zipfile import ZipFile
124 ZipFile(StringIO(stream.read())).extract("top-1m.csv", data_dir)
  /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/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

Completed in 1040 milliseconds

1 2 34 5 6 7