Searched defs:jf (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValue.cpp70 union { intptr_t p; jfloat jf; } value; member in union:__anon438
72 value.jf = (jfloat) *(jdouble*) value_addr;
/openjdk7/jdk/test/tools/pack200/
H A DTestExceptions.java54 JarFile jf = null;
56 jf = new JarFile(testJar);
57 Utils.pack(jf, testPackFile);
61 Utils.close(jf);
283 public PackTestInput(JarFile jf, OutputStream out) { argument
284 super("PackTestInput", jf, out);
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DClassFileReader.java61 public static ClassFileReader newInstance(Path path, JarFile jf) throws IOException { argument
62 return new JarFileReader(path, jf);
236 JarFileReader(Path path, JarFile jf) throws IOException { argument
238 this.jarfile = jf;
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackerImpl.java334 final JarFile jf; field in class:PackerImpl.DoPack.InFile
342 this.jf = null;
351 InFile(JarFile jf, JarEntry je) { argument
354 this.jf = jf;
391 if (jf != null)
392 return jf.getInputStream(je);
627 List<InFile> scanJar(JarFile jf) throws IOException { argument
631 for (JarEntry je : Collections.list(jf.entries())) {
632 InFile inFile = new InFile(jf, j
[all...]

Completed in 277 milliseconds