HomeSort by relevance Sort by last modified time
    Searched refs:ze (Results 1 - 16 of 16) sorted by null

  /libcore/luni/src/main/java/java/util/jar/
JarOutputStream.java 51 ZipEntry ze = new ZipEntry(JarFile.MANIFEST_NAME); local
52 putNextEntry(ze);
74 * @param ze
81 public void putNextEntry(ZipEntry ze) throws IOException {
82 super.putNextEntry(ze);
JarFile.java 68 JarFileInputStream(InputStream is, ZipEntry ze,
71 zipEntry = ze;
249 Enumeration<? extends ZipEntry> ze; field in class:JarFile.JarFileEnumerator
254 ze = zenum;
259 return ze.hasMoreElements();
263 JarEntry je = new JarEntry(ze.nextElement());
373 * @param ze
380 public InputStream getInputStream(ZipEntry ze) throws IOException {
399 InputStream in = super.getInputStream(ze);
403 if (verifier == null || ze.getSize() == -1)
423 ZipEntry ze = super.getEntry(name); local
442 ZipEntry ze = allEntries.nextElement(); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipOutputStreamTest.java 67 ZipEntry ze = new ZipEntry("testEntry"); local
68 ze.setTime(System.currentTimeMillis());
69 zos.putNextEntry(ze);
73 ze.getSize() == 11 && ze.getCompressedSize() == 13);
81 ZipEntry ze = new ZipEntry("test"); local
82 zos.putNextEntry(ze);
85 assertEquals("Finish failed to closeCurrentEntry", 11, ze.getSize());
103 ZipEntry ze = new ZipEntry("testEntry"); local
104 ze.setTime(System.currentTimeMillis())
143 ZipEntry ze = new ZipEntry("test"); local
159 ZipEntry ze = new ZipEntry("test"); local
180 ZipEntry ze = new ZipEntry("test"); local
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 301 * ze}.
303 * @param ze
306 public ZipEntry(ZipEntry ze) {
307 name = ze.name;
308 comment = ze.comment;
309 time = ze.time;
310 size = ze.size;
311 compressedSize = ze.compressedSize;
312 crc = ze.crc;
313 compressionMethod = ze.compressionMethod
    [all...]
ZipOutputStream.java 235 * @param ze
241 public void putNextEntry(ZipEntry ze) throws java.io.IOException {
245 if (ze.getMethod() == STORED || (compressMethod == STORED && ze.getMethod() == -1)) {
246 if (ze.crc == -1) {
249 if (ze.size == -1 && ze.compressedSize == -1) {
252 if (ze.size != ze.compressedSize && ze.compressedSize != -1 && ze.size != -1)
    [all...]
ZipFile.java 234 ZipEntry ze = mEntries.get(entryName);
235 if (ze == null) {
236 ze = mEntries.get(entryName + "/");
238 return ze;
  /external/srec/srec/clib/
voc_read.c 275 zipentry_t ze = 0; local
306 ze = lookup_zipentry(zf, entryname);
307 if (!ze) goto FAILED;
310 size2 = get_zipentry_size(ze);
315 if (decompress_zipentry(ze, buf2, size2)) goto FAILED;
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarOutputStreamTest.java 151 ZipEntry ze = new ZipEntry("Test"); local
155 joutFoo.putNextEntry(ze);
165 joutFoo.putNextEntry(ze);
  /cts/tools/host/src/com/android/cts/
HostUtils.java 162 ZipEntry ze = new ZipEntry(path); local
164 zipOutputStream.putNextEntry(ze);
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 106 } catch (ZipException ze) {
  /prebuilt/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilt/common/ant/
ant.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 544 milliseconds