Lines Matching defs:Brotli
91 // Brotli operations (~flush levels)
835 function Brotli(opts, mode) {
871 ObjectSetPrototypeOf(Brotli.prototype, Zlib.prototype);
872 ObjectSetPrototypeOf(Brotli, Zlib);
877 ReflectApply(Brotli, this, [opts, BROTLI_ENCODE]);
879 ObjectSetPrototypeOf(BrotliCompress.prototype, Brotli.prototype);
880 ObjectSetPrototypeOf(BrotliCompress, Brotli);
885 ReflectApply(Brotli, this, [opts, BROTLI_DECODE]);
887 ObjectSetPrototypeOf(BrotliDecompress.prototype, Brotli.prototype);
888 ObjectSetPrototypeOf(BrotliDecompress, Brotli);