Searched refs:opt_start (Results 1 – 2 of 2) sorted by relevance
/external/protobuf/js/binary/ |
D | decoder.js | 224 jspb.BinaryDecoder = function(opt_bytes, opt_start, opt_length) { argument 270 this.setBlock(opt_bytes, opt_start, opt_length); 291 jspb.BinaryDecoder.alloc = function(opt_bytes, opt_start, opt_length) { argument 295 newDecoder.setBlock(opt_bytes, opt_start, opt_length); 299 return new jspb.BinaryDecoder(opt_bytes, opt_start, opt_length); 354 function(data, opt_start, opt_length) { argument 356 this.start_ = goog.isDef(opt_start) ? opt_start : 0;
|
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);
|