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

1 2 3

  /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 142 final Enumeration<? extends ZipEntry> ze; field in class:JarFile.JarFileEnumerator
146 ze = zenum;
151 return ze.hasMoreElements();
155 return new JarEntry(ze.nextElement(), jf /* parentJar */);
367 * @param ze
374 public InputStream getInputStream(ZipEntry ze) throws IOException {
390 InputStream in = super.getInputStream(ze);
394 if (verifier == null || ze.getSize() == -1) {
397 JarVerifier.VerifierEntry entry = verifier.initEntry(ze.getName());
401 return new JarFileInputStream(in, ze.getSize(), entry)
414 ZipEntry ze = super.getEntry(name); local
430 ZipEntry ze = allEntries.nextElement(); local
    [all...]
StrictJarFile.java 97 public Certificate[][] getCertificateChains(ZipEntry ze) {
99 return verifier.getCertificateChains(ze.getName());
116 public Certificate[] getCertificates(ZipEntry ze) {
118 Certificate[][] certChains = verifier.getCertificateChains(ze.getName());
140 public InputStream getInputStream(ZipEntry ze) {
141 final InputStream is = getZipInputStream(ze);
144 JarVerifier.VerifierEntry entry = verifier.initEntry(ze.getName());
149 return new JarFile.JarFileInputStream(is, ze.getSize(), entry);
165 private InputStream getZipInputStream(ZipEntry ze) {
166 if (ze.getMethod() == ZipEntry.STORED)
188 final ZipEntry ze = nextEntry; local
201 final ZipEntry ze = nativeNextEntry(iterationHandle); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/jar/
StrictJarFileTest.java 63 final ZipEntry ze = it.next(); local
64 entries.put(ze.getName(), ze); local
71 ZipEntry ze = entries.get("META-INF/MANIFEST.MF"); local
72 assertEquals(62, ze.getSize());
73 assertEquals(ZipEntry.DEFLATED, ze.getMethod());
74 assertEquals(61, ze.getCompressedSize());
77 ze = entries.get("Blah.txt");
78 assertEquals(4, ze.getSize());
79 assertEquals(ZipEntry.DEFLATED, ze.getMethod())
100 final ZipEntry ze = jarFile.findEntry("Blah.txt"); local
135 ZipEntry ze = jarFile.findEntry("Test.class"); local
152 ZipEntry ze = jarFile.findEntry("Test.class"); local
    [all...]
  /frameworks/base/libs/androidfw/
ZipFileRO.cpp 108 const ZipEntry& ze = zipEntry->entry; local
111 *pMethod = ze.method;
114 *pUncompLen = ze.uncompressed_length;
117 *pCompLen = ze.compressed_length;
120 *pOffset = ze.offset;
123 *pModWhen = ze.mod_time;
126 *pCrc32 = ze.crc32;
134 _ZipEntryRO* ze = new _ZipEntryRO; local
135 int32_t error = StartIteration(mHandle, &(ze->cookie), NULL /* prefix */);
138 delete ze;
148 _ZipEntryRO* ze = reinterpret_cast<_ZipEntryRO*>(cookie); local
196 const ZipEntry& ze = zipEntry->entry; local
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
ZipOutputStream.java 255 * @param ze
261 public void putNextEntry(ZipEntry ze) throws IOException {
267 int method = ze.getMethod();
274 if (ze.getCompressedSize() == -1) {
275 ze.setCompressedSize(ze.getSize());
276 } else if (ze.getSize() == -1) {
277 ze.setSize(ze.getCompressedSize());
279 if (ze.getCrc() == -1)
    [all...]
  /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/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
JarOutputStreamTest.java 71 ZipEntry ze = new ZipEntry("Test"); local
75 joutFoo.putNextEntry(ze);
85 joutFoo.putNextEntry(ze);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipOutputStreamTest.java 60 ZipEntry ze = new ZipEntry("testEntry"); local
61 ze.setTime(System.currentTimeMillis());
62 zos.putNextEntry(ze);
66 ze.getSize() == 11 && ze.getCompressedSize() == 13);
74 ZipEntry ze = new ZipEntry("test"); local
75 zos.putNextEntry(ze);
78 assertEquals("Finish failed to closeCurrentEntry", 11, ze.getSize());
96 ZipEntry ze = new ZipEntry("testEntry"); local
97 ze.setTime(System.currentTimeMillis())
135 ZipEntry ze = new ZipEntry("test"); local
151 ZipEntry ze = new ZipEntry("test"); local
172 ZipEntry ze = new ZipEntry("test"); local
    [all...]
  /external/libvorbis/vq/
bookutil.c 32 int ze=(qv>>1); local
39 int m = (v<ze ? ((ze-v)<<1)-1 : ((v-ze)<<1));
45 int m = (v<ze ? ((ze-v)<<1)-1 : ((v-ze)<<1));
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipEntryTest.java 121 ZipEntry ze = new ZipEntry("x"); local
123 ze.setExtra(tooLongExtra);
134 ZipEntry ze = new ZipEntry("x"); local
135 ze.setExtra(maxLengthExtra);
136 out.putNextEntry(ze);
148 ZipEntry ze = new ZipEntry("x"); local
150 ze.setComment(tooLongComment);
161 ZipEntry ze = new ZipEntry("x"); local
162 ze.setComment(maxLengthComment);
163 out.putNextEntry(ze);
179 ZipEntry ze = new ZipEntry("x"); local
    [all...]
ZipFileTest.java 160 ZipEntry ze = zip.getEntry(name); local
161 ze.setCompressedSize(expectedLength - 1);
163 InputStream stream = zip.getInputStream(ze);
232 ZipEntry ze = new ZipEntry(Integer.toHexString(entry)); local
233 out.putNextEntry(ze);
265 ZipEntry ze = new ZipEntry("a"); local
266 ze.setMethod(ZipEntry.STORED);
267 out.putNextEntry(ze);
274 ZipEntry ze = new ZipEntry("a"); local
275 ze.setMethod(ZipEntry.STORED)
284 ZipEntry ze = new ZipEntry("a"); local
295 ZipEntry ze = new ZipEntry("a"); local
305 ZipEntry ze = new ZipEntry("okay1"); local
325 ZipEntry ze = new ZipEntry("okay2"); local
345 ZipEntry ze = new ZipEntry("a"); local
356 ZipEntry ze = new ZipEntry("okay"); local
395 ZipEntry ze = new ZipEntry("a"); local
427 ZipEntry ze = new ZipEntry("test entry"); local
457 ZipEntry ze = new ZipEntry("test"); local
    [all...]
  /cts/hostsidetests/theme/src/android/theme/cts/
ThemeHostTest.java 232 ZipEntry ze; local
234 while ((ze = in.getNextEntry()) != null) {
235 final String name = ze.getName();
  /external/libvorbis/lib/
res0.c 334 int ze=(qv>>1); local
342 int m = (v<ze ? ((ze-v)<<1)-1 : ((v-ze)<<1));
349 int m = (v<ze ? ((ze-v)<<1)-1 : ((v-ze)<<1));
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-archiver/2.2/
plexus-archiver-2.2.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/2.2/
plexus-archiver-2.2.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/1.0/
plexus-archiver-1.0.jar 
  /prebuilts/devtools/tools/lib/
commons-compress-1.0.jar 
  /prebuilts/tools/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.0/
commons-compress-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-metadata-model/0.18.1/
tycho-metadata-model-0.18.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.touchpoint.natives_1.1.100.v20130327-2119.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-metadata-model/0.20.0/
tycho-metadata-model-0.20.0.jar 

Completed in 525 milliseconds

1 2 3