Searched refs:opt_bytes (Results 1 – 2 of 2) sorted by relevance
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/js/binary/ |
D | decoder.js | 223 jspb.BinaryDecoder = function(opt_bytes, opt_start, opt_length) { argument 268 if (opt_bytes) { 269 this.setBlock(opt_bytes, opt_start, opt_length); 290 jspb.BinaryDecoder.alloc = function(opt_bytes, opt_start, opt_length) { argument 293 if (opt_bytes) { 294 newDecoder.setBlock(opt_bytes, opt_start, opt_length); 298 return new jspb.BinaryDecoder(opt_bytes, opt_start, opt_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 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);
|