/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/ |
D | CompoundDictionaryTest.java | 33 BrotliInputStream decoder = new BrotliInputStream(new ByteArrayInputStream(ONE_COPY)); in testNoDictionary() 43 BrotliInputStream decoder = new BrotliInputStream(new ByteArrayInputStream(ONE_COPY)); in testOnePieceDictionary() 54 BrotliInputStream decoder = new BrotliInputStream(new ByteArrayInputStream(ONE_COPY)); in testTwoPieceDictionary()
|
D | SetDictionaryTest.java | 45 BrotliInputStream decoder; in testSetDictionary() 48 decoder = new BrotliInputStream(new ByteArrayInputStream(ONE_COMMAND)); in testSetDictionary() 54 decoder = new BrotliInputStream(new ByteArrayInputStream(BASE_DICT_WORD)); in testSetDictionary() 74 decoder = new BrotliInputStream(new ByteArrayInputStream(BASE_DICT_WORD)); in testSetDictionary()
|
D | EagerStreamTest.java | 370 BrotliInputStream reader = new BrotliInputStream(ps, 1); in testEagerStream() 377 reader = new BrotliInputStream(ps, 1); in testEagerStream()
|
D | BrotliInputStream.java | 17 public class BrotliInputStream extends InputStream { class 53 public BrotliInputStream(InputStream source) throws IOException { in BrotliInputStream() method in BrotliInputStream 71 public BrotliInputStream(InputStream source, int byteReadBufferSize) throws IOException { in BrotliInputStream() method in BrotliInputStream
|
D | DecodeTest.java | 36 BrotliInputStream brotliInput = new BrotliInputStream(input); in decompress()
|
D | SynthTest.java | 38 BrotliInputStream brotliInput = new BrotliInputStream(input); in decompress()
|
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/ |
D | DecodeTest.cs | 21 Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input); in Decompress() 58 …Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input, Org.Bro… in DecompressWithDictionary()
|
D | BrotliInputStream.cs | 13 public class BrotliInputStream : System.IO.Stream class 42 public BrotliInputStream(System.IO.Stream source) in BrotliInputStream() method in Org.Brotli.Dec.BrotliInputStream 63 public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize) in BrotliInputStream() method in Org.Brotli.Dec.BrotliInputStream 89 public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize, byte[] customDictionary) in BrotliInputStream() method in Org.Brotli.Dec.BrotliInputStream
|
D | SynthTest.cs | 21 Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input); in Decompress()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/common/ |
D | SetZeroDictionaryTest.java | 13 import org.brotli.wrapper.dec.BrotliInputStream; 34 BrotliInputStream decoder = new BrotliInputStream(new ByteArrayInputStream(data)); in testZeroDictionary()
|
D | SetRfcDictionaryTest.java | 15 import org.brotli.wrapper.dec.BrotliInputStream; 53 BrotliInputStream decoder = new BrotliInputStream(new ByteArrayInputStream(data)); in testSetRfcDictionary()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/dec/ |
D | BrotliInputStream.java | 16 public class BrotliInputStream extends InputStream { class 28 public BrotliInputStream(InputStream source, int bufferSize) in BrotliInputStream() method in BrotliInputStream 33 public BrotliInputStream(InputStream source) throws IOException { in BrotliInputStream() method in BrotliInputStream
|
D | EagerStreamTest.java | 58 BrotliInputStream reader = new BrotliInputStream(source); in testEagerReading()
|
D | BrotliInputStreamTest.java | 73 InputStream decoder = new BrotliInputStream(src); in run()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/integration/ |
D | BundleChecker.java | 9 import org.brotli.dec.BrotliInputStream; 48 BrotliInputStream decompressedStream = new BrotliInputStream(entryStream); in decompressAndCalculateCrc()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/enc/ |
D | EncoderTest.java | 7 import org.brotli.wrapper.dec.BrotliInputStream; 70 InputStream decoder = new BrotliInputStream(new ByteArrayInputStream(compressed)); in run()
|
D | BrotliOutputStreamTest.java | 7 import org.brotli.wrapper.dec.BrotliInputStream; 109 InputStream decoder = new BrotliInputStream(new ByteArrayInputStream(dst.toByteArray())); in run()
|
D | BrotliEncoderChannelTest.java | 7 import org.brotli.wrapper.dec.BrotliInputStream; 109 InputStream decoder = new BrotliInputStream(new ByteArrayInputStream(dst.toByteArray())); in run()
|
/third_party/skia/third_party/externals/brotli/csharp/ |
D | transpile.sh | 60 CODE=$(<org/brotli/dec/BrotliInputStream.cs) 62 echo "${CODE//$PATTERN/$REPLACEMENT}" > org/brotli/dec/BrotliInputStream.cs
|
D | sharpen.cfg | 17 -methodMapping org.brotli.dec.BrotliInputStream.read() ReadByte
|