Searched refs:je (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/java/util/jar/
H A DJarEntry.java119 * @param je
122 public JarEntry(JarEntry je) { argument
123 super(je);
124 parentJar = je.parentJar;
125 attributes = je.attributes;
126 signers = je.signers;
H A DJarFile.java251 JarEntry je = new JarEntry(ze.nextElement());
252 je.parentJar = jf;
253 return je;
417 JarEntry je = new JarEntry(ze);
418 je.parentJar = this;
419 return je;
/libcore/luni/src/test/java/libcore/java/util/jar/
H A DOldJarEntryTest.java129 JarEntry je = jarFile.getJarEntry(entryName);
130 assertNotNull("Jar entry is null", je);
131 jarEntry = new JarEntry(je);
/libcore/luni/src/test/java/libcore/java/util/zip/
H A DOldAndroidZipStressTest.java40 JarEntry je = jarFile.getJarEntry("AndroidManifest.xml");
46 InputStream is = jarFile.getInputStream(je);
50 Certificate[] certs = je != null ? je.getCertificates() : null;
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DJarFileTest.java300 JarEntry je = enumeration.nextElement();
301 jarFile.getEntry(je.getName());
306 JarEntry je = enumeration.nextElement();
309 jarFile.getEntry(je.getName());
337 JarEntry je = enumeration.nextElement();
338 jarFile.getJarEntry(je.getName());
343 JarEntry je = enumeration.nextElement();
346 jarFile.getJarEntry(je.getName());
/libcore/luni/src/test/java/libcore/java/net/
H A DOldJarURLConnectionTest.java80 JarEntry je = juc.getJarEntry();
82 InputStream is = jf.getInputStream(je);
83 is.skip(je.getSize());
/libcore/luni/src/main/java/java/net/
H A DURLClassLoader.java250 final JarEntry je = jf.getJarEntry("META-INF/INDEX.LIST");
251 this.index = (je == null ? null : IndexFile.readIndexFile(jf, je, url));

Completed in 171 milliseconds