Lines Matching refs:opt_length
60 * @param {number=} opt_length The optional length of the block to read -
65 jspb.BinaryDecoder = function(opt_bytes, opt_start, opt_length) {
97 this.setBlock(opt_bytes, opt_start, opt_length);
114 * @param {number=} opt_length The optional length of the block to read -
118 jspb.BinaryDecoder.alloc = function(opt_bytes, opt_start, opt_length) {
122 newDecoder.setBlock(opt_bytes, opt_start, opt_length);
126 return new jspb.BinaryDecoder(opt_bytes, opt_start, opt_length);
177 * @param {number=} opt_length The optional length of the block to read -
181 function(data, opt_start, opt_length) {
184 this.end_ = (opt_length !== undefined) ? this.start_ + opt_length :