Searched refs:zip (Results 251 - 272 of 272) sorted by relevance

<<11

/openjdk9/langtools/test/tools/javac/modules/
H A DAutomaticModules.java42 import java.util.zip.ZipEntry;
43 import java.util.zip.ZipOutputStream;
/openjdk9/jdk/src/java.base/share/classes/java/util/jar/
H A DJarFile.java34 import java.util.zip.*;
46 * It extends the class {@code java.util.zip.ZipFile} with support
126 * @see java.util.zip.ZipFile
473 * @see java.util.zip.ZipEntry
782 * zip file entry.
783 * @param ze the zip file entry
785 * zip file entry
786 * @throws ZipException if a zip file format error has occurred
1058 * Returns an enumeration of the zip file entries
H A DJarVerifier.java33 import java.util.zip.ZipEntry;
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/
H A DMethodWriter.java2082 boolean zip = (cw.version & 0xFFFF) >= Opcodes.V1_6;
2083 cw.newUTF8(zip ? "StackMapTable" : "StackMap");
2302 boolean zip = (cw.version & 0xFFFF) >= Opcodes.V1_6;
2303 out.putShort(cw.newUTF8(zip ? "StackMapTable" : "StackMap"));
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java1843 boolean zip = (cw.version & 0xFFFF) >= Opcodes.V1_6;
1844 cw.newUTF8(zip ? "StackMapTable" : "StackMap");
2023 boolean zip = (cw.version & 0xFFFF) >= Opcodes.V1_6;
2024 out.putShort(cw.newUTF8(zip ? "StackMapTable" : "StackMap"));
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DAbstractIndexWriter.java30 import java.util.zip.*;
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerFactoryImpl.java51 import java.util.zip.ZipEntry;
52 import java.util.zip.ZipFile;
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageWriter.java38 import java.util.zip.Deflater;
39 import java.util.zip.DeflaterOutputStream;
/openjdk9/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DCodingChooser.java38 import java.util.zip.Deflater;
39 import java.util.zip.DeflaterOutputStream;
43 * Runs "zip" to measure the apparent information content after coding.
316 // zip well with other bytes in the band.
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/
H A DHotSpotGraphBuilderPlugins.java40 import java.util.zip.CRC32;
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java29 import java.util.zip.*;
/openjdk9/jdk/src/java.base/share/classes/sun/util/calendar/
H A DZoneInfoFile.java53 import java.util.zip.CRC32;
/openjdk9/jdk/src/java.desktop/share/classes/sun/awt/image/
H A DPNGImageDecoder.java30 import java.util.zip.*;
/openjdk9/langtools/test/tools/javac/diags/
H A DExample.java37 import java.util.zip.ZipEntry;
/openjdk9/jdk/test/tools/lib/tests/
H A DJImageGenerator.java51 import java.util.zip.ZipEntry;
/openjdk9/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DSourceCodeAnalysisImpl.java1292 Path srcZip = home.resolve("lib").resolve("src.zip");
1294 srcZip = home.getParent().resolve("src.zip");
1612 //create/update index a given JavaFileManager entry (which may be a JDK installation, a jar/zip file or a directory):
1640 try (FileSystem zip = FileSystems.newFileSystem(path, cl)) {
1641 index = doIndex(lastModified, path, zip.getRootDirectories());
/openjdk9/jdk/make/src/classes/build/tools/generatebreakiteratordata/
H A DRuleBasedBreakIteratorBuilder.java33 import java.util.zip.CRC32;
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/jszip/dist/
H A Djszip.js3 JSZip - A Javascript class for generating and reading zip files
258 throw new Error("End of data reached (data length = " + this.length + ", asked index = " + (newIndex) + "). Corrupted zip ?");
318 * Find the last occurence of a zip signature (4 bytes).
487 zip = new JSZip();
488 zip.file("hello.txt", "Hello, World!").file("tempfile", "nothing");
489 zip.folder("images").file("smile.gif", base64Data, {base64: true});
490 zip.file("Xmas.txt", "Ho ho ho !", {date : new Date("December 25, 2007 00:00:01")});
491 zip.remove("tempfile");
493 base64zip = zip.generate();
498 * Representation a of zip fil
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/resources/jquery/jszip/dist/
H A Djszip.js3 JSZip - A Javascript class for generating and reading zip files
258 throw new Error("End of data reached (data length = " + this.length + ", asked index = " + (newIndex) + "). Corrupted zip ?");
318 * Find the last occurence of a zip signature (4 bytes).
487 zip = new JSZip();
488 zip.file("hello.txt", "Hello, World!").file("tempfile", "nothing");
489 zip.folder("images").file("smile.gif", base64Data, {base64: true});
490 zip.file("Xmas.txt", "Ho ho ho !", {date : new Date("December 25, 2007 00:00:01")});
491 zip.remove("tempfile");
493 base64zip = zip.generate();
498 * Representation a of zip fil
[all...]
/openjdk9/jdk/src/jdk.jartool/share/classes/sun/security/tools/jarsigner/
H A DMain.java32 import java.util.zip.*;
155 // read zip entry raw bytes
1348 // Open the jar (zip) file
/openjdk9/jdk/src/jdk.jartool/share/classes/sun/tools/jar/
H A DMain.java55 import java.util.zip.*;
146 * flag0: no zip compression (store only)
251 // The name of the zip file as it would appear as its own
252 // zip file entry. We use this to make sure that we don't
253 // add the zip file to itself.
387 // since only a single sequential scan through the zip file is
390 // partial extract is requested. In case the zip file has
1341 * (indicating this was a zip file without "leading garbage")
1407 // an offending zip/jar entry may uses the backwards slash in its
1738 * Associates a module descriptor's zip entr
[all...]
/openjdk9/common/autoconf/
H A Dgenerated-configure.sh1991 --enable-zip-debug-info Deprecated. Option is kept for backwards
2116 --with-import-modules import a set of prebuilt modules either as a zip
4165 zip)
4166 PKGHANDLER_COMMAND="( cd <location of cygwin setup.exe> && cmd /c setup -q -P zip )"
21680 # Since zip uses "ZIP" as a environment variable for passing options, we need
21690 for ac_prog in zip
21748 for ac_prog in zip
[all...]

Completed in 293 milliseconds

<<11