Home | History | Annotate | Download | only in zip

Lines Matching defs:in

7  * "License"); you may not use this file except in compliance
12 * Unless required by applicable law or agreed to in writing,
29 * The implode compression method was added to PKZIP 1.01 released in 1989.
30 * It was then dropped from PKZIP 2.0 released in 1993 in favor of the deflate
33 * The algorithm is described in the ZIP File Format Specification.
43 private final InputStream in;
78 * @param in the compressed data stream
80 public ExplodingInputStream(final int dictionarySize, final int numberOfTrees, final InputStream in) {
90 this.in = in;
100 try (CountingInputStream i = new CountingInputStream(in) {
103 // we do not want to close in
115 bits = new BitStream(in);
153 in.close();