Searched refs:opt_length (Results 1 – 2 of 2) sorted by relevance
/external/protobuf/js/binary/ |
D | decoder.js | 223 jspb.BinaryDecoder = function(opt_bytes, opt_start, opt_length) { argument 269 this.setBlock(opt_bytes, opt_start, opt_length); 290 jspb.BinaryDecoder.alloc = function(opt_bytes, opt_start, opt_length) { argument 294 newDecoder.setBlock(opt_bytes, opt_start, opt_length); 298 return new jspb.BinaryDecoder(opt_bytes, opt_start, opt_length); 353 function(data, opt_start, opt_length) { argument 357 goog.isDef(opt_length) ? this.start_ + opt_length : this.bytes_.length;
|
D | reader.js | 66 jspb.BinaryReader = function(opt_bytes, opt_start, opt_length) { argument 71 this.decoder_ = jspb.BinaryDecoder.alloc(opt_bytes, opt_start, opt_length); 123 function(opt_bytes, opt_start, opt_length) { argument 127 newReader.decoder_.setBlock(opt_bytes, opt_start, opt_length); 131 return new jspb.BinaryReader(opt_bytes, opt_start, opt_length);
|