HomeSort by relevance Sort by last modified time
    Searched refs:ZipFile (Results 51 - 75 of 81) sorted by null

1 23 4

  /dalvik/dx/src/com/android/dx/io/
DexBuffer.java 46 import java.util.zip.ZipFile;
150 ZipFile zipFile = new ZipFile(file);
151 ZipEntry entry = zipFile.getEntry(DexFormat.DEX_IN_JAR_NAME);
153 loadFrom(zipFile.getInputStream(entry));
154 zipFile.close();
  /external/chromium/chrome/common/extensions/docs/build/
directory.py 13 import zipfile namespace
635 # we pass zip_manifest_path to zipfile.getinfo(), which chokes on
640 zipfile.ZipFile.debug = 3
644 old_zip_file = zipfile.ZipFile(zip_path, 'r')
647 except zipfile.BadZipfile, msg:
660 zip_file = zipfile.ZipFile(zip_path, 'w')
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmAnalyzer.java 40 import java.util.zip.ZipFile;
109 ZipFile zip = new ZipFile(jarPath);
DependencyFinder.java 44 import java.util.zip.ZipFile;
157 ZipFile zip = new ZipFile(jarPath);
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipEntryTest.java 44 java.util.zip.ZipFile zfile;
457 // Create absolute filename as ZipFile does not resolve using
468 zfile = new java.util.zip.ZipFile(f);
476 System.out.println("Exception during ZipFile setup <"
  /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...]
  /libcore/luni/src/main/java/java/util/zip/
ZipInputStream.java 42 * <p>Use {@code ZipFile} if you can access the archive as a file directly,
72 * @see ZipFile
248 hasDD = ((flags & ZipFile.GPBF_DATA_DESCRIPTOR_FLAG) != 0);
  /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')
  /prebuilts/tools/common/commons-compress/
commons-compress-1.0.jar 
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/archives/
ArchiveInstaller.java 38 import org.apache.commons.compress.archivers.zip.ZipFile;
    [all...]
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/internal/utils/
ApktoolUtils.java 38 import java.util.zip.ZipFile;
    [all...]
  /build/tools/releasetools/
check_target_files_signatures 53 import zipfile namespace
62 # Work around a bug in python's zipfile module that prevents opening
67 class MyZipInfo(zipfile.ZipInfo):
70 zipfile.ZipInfo = MyZipInfo
201 apk = zipfile.ZipFile(f, "r")
common.py 29 import zipfile namespace
307 Returns (tempdir, zipobj) where zipobj is a zipfile.ZipFile (of the
332 return tmp, zipfile.ZipFile(filename, "r")
447 """Given a target_files ZipFile, parse the META/apkcerts.txt file
647 zinfo = zipfile.ZipInfo(filename=filename,
ota_from_target_files 18 Given a target-files zipfile, produces an OTA package that installs
70 import zipfile namespace
102 """Return true if the zipfile.ZipInfo object passed in represents a
107 """Return true if the zipfile.ZipInfo object passed in represents a
451 ZipFile, and return a dict of {filename: File object}."""
803 output_zip = zipfile.ZipFile(temp_zip_file, "w",
804 compression=zipfile.ZIP_DEFLATED)
  /external/webkit/Tools/Scripts/webkitpy/common/system/
autoinstall.py 46 import zipfile namespace
264 # This is a replacement for ZipFile.extractall(), which is
302 # zipfile.extractall() extracts to a path without the
310 zip_file = zipfile.ZipFile(path, "r")
311 except zipfile.BadZipfile, err:
  /build/tools/zipalign/
ZipEntry.cpp 144 status_t ZipEntry::initFromExternal(const ZipFile* pZipFile,
  /development/scripts/app_engine_server/
memcache_zipserve.py 38 import zipfile namespace
573 zip_archive = zipfile.ZipFile(zipfilename)
576 logging.error('Can\'t open zipfile %s, cause: %s' % (zipfilename,
  /frameworks/base/tools/aapt/
ZipEntry.cpp 144 status_t ZipEntry::initFromExternal(const ZipFile* pZipFile,
AaptAssets.cpp     [all...]
  /external/sonivox/jet_tools/JetCreator/
JetUtils.py 478 z = __import__('zipfile')
479 zip = z.ZipFile(fileName, 'w')
JetCreator.py     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 968 milliseconds

1 23 4