Home | History | Annotate | Download | only in binary

Lines Matching full:goog

46 goog.provide('jspb.BinaryDecoder');
47 goog.provide('jspb.BinaryIterator');
49 goog.require('goog.asserts');
50 goog.require('jspb.utils');
355 this.start_ = goog.isDef(opt_start) ? opt_start : 0;
357 goog.isDef(opt_length) ? this.start_ + opt_length : this.bytes_.length;
410 goog.asserts.assert(this.cursor_ <= this.end_);
497 goog.asserts.fail('Failed to read varint, encoding is invalid.');
553 goog.asserts.assert(this.cursor_ <= this.end_);
561 goog.asserts.assert(this.cursor_ <= this.end_);
569 goog.asserts.assert(this.cursor_ <= this.end_);
577 goog.asserts.assert(this.cursor_ <= this.end_);
587 goog.asserts.assert((temp & 0xF0) == 0);
589 goog.asserts.assert(this.cursor_ <= this.end_);
598 goog.asserts.assert((temp & 0xF0) == 0xF0);
599 goog.asserts.assert(bytes[this.cursor_ + 5] == 0xFF);
600 goog.asserts.assert(bytes[this.cursor_ + 6] == 0xFF);
601 goog.asserts.assert(bytes[this.cursor_ + 7] == 0xFF);
602 goog.asserts.assert(bytes[this.cursor_ + 8] == 0xFF);
603 goog.asserts.assert(bytes[this.cursor_ + 9] == 0x01);
606 goog.asserts.assert(this.cursor_ <= this.end_);
743 goog.asserts.assert(this.cursor_ <= this.end_);
757 goog.asserts.assert(this.cursor_ <= this.end_);
773 goog.asserts.assert(this.cursor_ <= this.end_);
801 goog.asserts.assert(this.cursor_ <= this.end_);
815 goog.asserts.assert(this.cursor_ <= this.end_);
831 goog.asserts.assert(this.cursor_ <= this.end_);
961 goog.asserts.fail('Invalid byte length!');
968 goog.asserts.assert(this.cursor_ <= this.end_);