HomeSort by relevance Sort by last modified time
    Searched refs:BrotliInputStream (Results 1 - 16 of 16) sorted by null

  /external/brotli/java/org/brotli/wrapper/common/
SetZeroDictionaryTest.java 12 import org.brotli.wrapper.dec.BrotliInputStream;
39 BrotliInputStream decoder = new BrotliInputStream(new ByteArrayInputStream(data));
SetRfcDictionaryTest.java 14 import org.brotli.wrapper.dec.BrotliInputStream;
81 BrotliInputStream decoder = new BrotliInputStream(new ByteArrayInputStream(data));
  /external/brotli/java/org/brotli/dec/
SetDictionaryTest.java 45 BrotliInputStream decoder;
48 decoder = new BrotliInputStream(new ByteArrayInputStream(ONE_COMMAND));
54 decoder = new BrotliInputStream(new ByteArrayInputStream(BASE_DICT_WORD));
71 decoder = new BrotliInputStream(new ByteArrayInputStream(BASE_DICT_WORD));
BrotliInputStream.java 17 public class BrotliInputStream extends InputStream {
52 public BrotliInputStream(InputStream source) throws IOException {
69 public BrotliInputStream(InputStream source, int byteReadBufferSize) throws IOException {
DecodeTest.java 36 BrotliInputStream brotliInput = new BrotliInputStream(input);
SynthTest.java 37 BrotliInputStream brotliInput = new BrotliInputStream(input);
    [all...]
  /external/brotli/java/org/brotli/integration/
BundleChecker.java 9 import org.brotli.dec.BrotliInputStream;
48 BrotliInputStream decompressedStream = new BrotliInputStream(entryStream);
  /external/brotli/java/org/brotli/wrapper/dec/
BrotliInputStream.java 16 public class BrotliInputStream extends InputStream {
23 * Creates a BrotliInputStream.
28 public BrotliInputStream(InputStream source, int bufferSize)
33 public BrotliInputStream(InputStream source) throws IOException {
BrotliInputStreamTest.java 22 /** Tests for {@link org.brotli.wrapper.dec.BrotliInputStream}. */
78 InputStream decoder = new BrotliInputStream(src);
  /external/brotli/csharp/org/brotli/dec/
DecodeTest.cs 21 Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input);
58 Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input, Org.Brotli.Dec.BrotliInputStream.DefaultInternalBufferSize, dictionary);
BrotliInputStream.cs 13 public class BrotliInputStream : System.IO.Stream
42 public BrotliInputStream(System.IO.Stream source)
63 public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize)
89 public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize, byte[] customDictionary)
SynthTest.cs 21 Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input);
    [all...]
  /external/brotli/java/org/brotli/wrapper/enc/
EncoderTest.java 6 import org.brotli.wrapper.dec.BrotliInputStream;
76 InputStream decoder = new BrotliInputStream(new ByteArrayInputStream(compressed));
BrotliOutputStreamTest.java 6 import org.brotli.wrapper.dec.BrotliInputStream;
114 InputStream decoder = new BrotliInputStream(new ByteArrayInputStream(dst.toByteArray()));
BrotliEncoderChannelTest.java 6 import org.brotli.wrapper.dec.BrotliInputStream;
113 InputStream decoder = new BrotliInputStream(new ByteArrayInputStream(dst.toByteArray()));
  /external/brotli/csharp/
transpile.sh 60 CODE=$(<org/brotli/dec/BrotliInputStream.cs)
62 echo "${CODE//$PATTERN/$REPLACEMENT}" > org/brotli/dec/BrotliInputStream.cs

Completed in 135 milliseconds