Home | History | Annotate | Download | only in binary

Lines Matching refs:opt_bytes

59  * @param {jspb.ByteSource=} opt_bytes The bytes we're reading from.
66 jspb.BinaryReader = function(opt_bytes, opt_start, opt_length) {
71 this.decoder_ = jspb.BinaryDecoder.alloc(opt_bytes, opt_start, opt_length);
116 * @param {jspb.ByteSource=} opt_bytes The bytes we're reading from.
123 function(opt_bytes, opt_start, opt_length) {
126 if (opt_bytes) {
127 newReader.decoder_.setBlock(opt_bytes, opt_start, opt_length);
131 return new jspb.BinaryReader(opt_bytes, opt_start, opt_length);
138 * @param {jspb.ByteSource=} opt_bytes The bytes we're reading from.