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

/openjdk7/jdk/test/java/util/zip/
H A DInfoZip.java56 private static String contents(ZipFile zf, ZipEntry ze) throws Exception { argument
57 InputStream is = zf.getInputStream(ze);
106 try (ZipFile zf = new ZipFile(f)) {
107 Enumeration<? extends ZipEntry> entries = zf.entries();
110 checkZipEntry(ze, contents(zf, ze));
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DClearStaleZipFileInputStreams.java117 ZipFile zf = new ZipFile(f);
119 Set<Object> refSet = createTransientInputStreams(zf, rq);
129 zf.close();
136 private static Set<Object> createTransientInputStreams(ZipFile zf, argument
138 Enumeration<? extends ZipEntry> zfe = zf.entries();
142 InputStream is = zf.getInputStream(zfe.nextElement());
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassFile.java65 public ClassFile(ZipFile zf, ZipEntry ze) { argument
66 this.zipFile = zf;
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dframe_zero.inline.hpp41 inline frame::frame(ZeroFrame* zf, intptr_t* sp) { argument
42 _zeroframe = zf;
/openjdk7/jdk/src/share/demo/applets/MoleculeViewer/
H A DMatrix3D.java75 void scale(float xf, float yf, float zf) { argument
84 zx *= zf;
85 zy *= zf;
86 zz *= zf;
87 zo *= zf;
/openjdk7/jdk/src/share/demo/applets/WireFrame/
H A DMatrix3D.java75 void scale(float xf, float yf, float zf) { argument
84 zx *= zf;
85 zy *= zf;
86 zz *= zf;
87 zo *= zf;
/openjdk7/jdk/test/tools/pack200/
H A DUtils.java363 static byte[] getBuffer(ZipFile zf, ZipEntry ze) throws IOException { argument
368 is = zf.getInputStream(ze);
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DJarSigner.java1530 private void writeEntry(ZipFile zf, ZipOutputStream os, ZipEntry ze) argument
1543 writeBytes(zf, ze, os);
1550 (ZipFile zf, ZipEntry ze, ZipOutputStream os) throws IOException {
1555 is = zf.getInputStream(ze);
1909 private synchronized byte[] getBytes(ZipFile zf, argument
1915 is = zf.getInputStream(ze);
1936 private ZipEntry getManifestFile(ZipFile zf) { argument
1937 ZipEntry ze = zf.getEntry(JarFile.MANIFEST_NAME);
1940 Enumeration<? extends ZipEntry> enum_ = zf.entries();
1956 private synchronized String[] getDigests(ZipEntry ze, ZipFile zf, argument
1549 writeBytes(ZipFile zf, ZipEntry ze, ZipOutputStream os) argument
1991 getDigestAttributes(ZipEntry ze, ZipFile zf, MessageDigest[] digests, BASE64Encoder encoder) argument
2016 updateDigests(ZipEntry ze, ZipFile zf, MessageDigest[] digests, BASE64Encoder encoder, Manifest mf) argument
[all...]

Completed in 134 milliseconds