Home
last modified time | relevance | path

Searched refs:opt_bytes (Results 1 – 2 of 2) sorted by relevance

/third_party/protobuf/js/binary/
Ddecoder.js65 jspb.BinaryDecoder = function(opt_bytes, opt_start, opt_length) { argument
96 if (opt_bytes) {
97 this.setBlock(opt_bytes, opt_start, opt_length);
118 jspb.BinaryDecoder.alloc = function(opt_bytes, opt_start, opt_length) { argument
121 if (opt_bytes) {
122 newDecoder.setBlock(opt_bytes, opt_start, opt_length);
126 return new jspb.BinaryDecoder(opt_bytes, opt_start, opt_length);
Dreader.js67 jspb.BinaryReader = function(opt_bytes, opt_start, opt_length) { argument
72 this.decoder_ = jspb.BinaryDecoder.alloc(opt_bytes, opt_start, opt_length);
124 function(opt_bytes, opt_start, opt_length) { argument
127 if (opt_bytes) {
128 newReader.decoder_.setBlock(opt_bytes, opt_start, opt_length);
132 return new jspb.BinaryReader(opt_bytes, opt_start, opt_length);