Searched defs:je (Results 1 - 8 of 8) sorted by relevance

/openjdk7/langtools/test/tools/javac/cast/6548436/
H A DT6548436a.java37 static void test(Base<?> je) { argument
38 Object o = (Base<Integer>)je;
H A DT6548436d.java37 static void test(Base<? extends Double> je) { argument
38 Object o = (Base<Integer>)je;
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarEntry.java69 * @param je the <code>JarEntry</code> to copy
71 public JarEntry(JarEntry je) { argument
72 this((ZipEntry)je);
73 this.attr = je.attr;
74 this.certs = je.certs;
75 this.signers = je.signers;
H A DJarVerifier.java110 public void beginEntry(JarEntry je, ManifestEntryVerifier mev) argument
113 if (je == null)
117 debug.println("beginEntry "+je.getName());
120 String name = je.getName();
137 if (je.isDirectory()) {
138 mev.setEntry(null, je);
146 mev.setEntry(null, je);
156 if (je.isDirectory()) {
157 mev.setEntry(null, je);
173 mev.setEntry(name, je);
433 VerifierStream(Manifest man, JarEntry je, InputStream is, JarVerifier jv) argument
865 getCodeSource(URL url, JarFile jar, JarEntry je) argument
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/sun/tools/pack/verify/
H A DClassCompare.java62 JarEntry je, boolean ignoreUnkAttrs,
66 InputStream is1 = jf1.getInputStream(je);
67 InputStream is2 = jf2.getInputStream(je);
74 Globals.println("+++" + je.getName() + "+++\t"
81 is1 = jf1.getInputStream(je);
82 is2 = jf2.getInputStream(je);
88 Globals.print("+++" + je.getName() + "+++\t"
61 compareClass0(JarFile jf1, JarFile jf2, JarEntry je, boolean ignoreUnkAttrs, List<String> ignoreElements) argument
H A DJarFileCompare.java38 for (JarEntry je : Collections.list((Enumeration<JarEntry>) j.entries())) {
39 if (!je.isDirectory()) { // totally ignore directories
40 vts.add(je.getName());
53 for (JarEntry je : Collections.list((Enumeration<JarEntry>) j.entries())) {
54 if (!je.isDirectory() && je.getName().endsWith(".class")) {
55 l.add(je.getName());
125 private static void checkEntry(JarFile jf1, JarFile jf2, JarEntry je) throws IOException { argument
126 InputStream is1 = jf1.getInputStream(je);
127 InputStream is2 = jf2.getInputStream(je);
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/jar/
H A DURLJarFile.java253 private JarEntry je; field in class:URLJarFile.URLJarFileEntry
255 URLJarFileEntry(JarEntry je) { argument
256 super(je);
257 this.je=je;
273 Certificate[] certs = je.getCertificates();
278 CodeSigner[] csg = je.getCodeSigners();
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackerImpl.java335 final JarEntry je; field in class:PackerImpl.DoPack.InFile
343 this.je = null;
351 InFile(JarFile jf, JarEntry je) { argument
352 this.name = Utils.getJarEntryName(je.getName());
355 this.je = je;
356 int timeSecs = getModtime(je.getTime());
362 if (keepDeflateHint && je.getMethod() == JarEntry.DEFLATED) {
366 InFile(JarEntry je) { argument
367 this(null, je);
[all...]

Completed in 58 milliseconds