Lines Matching refs:cursor_
78 this.cursor_ = 0;
104 this.cursor_ = 0;
160 this.cursor_ = 0;
200 if (this.cursor_ == this.elements_.length) {
204 this.nextValue_ = this.elements_[this.cursor_++];
246 this.cursor_ = 0;
331 this.cursor_ = 0;
358 this.cursor_ = this.start_;
382 this.cursor_ = this.start_;
391 return this.cursor_;
400 this.cursor_ = cursor;
409 this.cursor_ += count;
410 goog.asserts.assert(this.cursor_ <= this.end_);
419 return this.cursor_ == this.end_;
428 return this.cursor_ > this.end_;
438 (this.cursor_ < 0) ||
439 (this.cursor_ > this.end_);
466 temp = this.bytes_[this.cursor_++];
476 temp = this.bytes_[this.cursor_++];
487 temp = this.bytes_[this.cursor_++];
506 while (this.bytes_[this.cursor_] & 0x80) {
507 this.cursor_++;
509 this.cursor_++;
520 this.cursor_--;
523 this.cursor_--;
549 temp = bytes[this.cursor_ + 0];
552 this.cursor_ += 1;
553 goog.asserts.assert(this.cursor_ <= this.end_);
557 temp = bytes[this.cursor_ + 1];
560 this.cursor_ += 2;
561 goog.asserts.assert(this.cursor_ <= this.end_);
565 temp = bytes[this.cursor_ + 2];
568 this.cursor_ += 3;
569 goog.asserts.assert(this.cursor_ <= this.end_);
573 temp = bytes[this.cursor_ + 3];
576 this.cursor_ += 4;
577 goog.asserts.assert(this.cursor_ <= this.end_);
581 temp = bytes[this.cursor_ + 4];
588 this.cursor_ += 5;
589 goog.asserts.assert(this.cursor_ <= this.end_);
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);
605 this.cursor_ += 10;
606 goog.asserts.assert(this.cursor_ <= this.end_);
741 var a = this.bytes_[this.cursor_ + 0];
742 this.cursor_ += 1;
743 goog.asserts.assert(this.cursor_ <= this.end_);
754 var a = this.bytes_[this.cursor_ + 0];
755 var b = this.bytes_[this.cursor_ + 1];
756 this.cursor_ += 2;
757 goog.asserts.assert(this.cursor_ <= this.end_);
768 var a = this.bytes_[this.cursor_ + 0];
769 var b = this.bytes_[this.cursor_ + 1];
770 var c = this.bytes_[this.cursor_ + 2];
771 var d = this.bytes_[this.cursor_ + 3];
772 this.cursor_ += 4;
773 goog.asserts.assert(this.cursor_ <= this.end_);
799 var a = this.bytes_[this.cursor_ + 0];
800 this.cursor_ += 1;
801 goog.asserts.assert(this.cursor_ <= this.end_);
812 var a = this.bytes_[this.cursor_ + 0];
813 var b = this.bytes_[this.cursor_ + 1];
814 this.cursor_ += 2;
815 goog.asserts.assert(this.cursor_ <= this.end_);
826 var a = this.bytes_[this.cursor_ + 0];
827 var b = this.bytes_[this.cursor_ + 1];
828 var c = this.bytes_[this.cursor_ + 2];
829 var d = this.bytes_[this.cursor_ + 3];
830 this.cursor_ += 4;
831 goog.asserts.assert(this.cursor_ <= this.end_);
882 return !!this.bytes_[this.cursor_++];
908 var cursor = this.cursor_;
934 this.cursor_ = cursor;
959 this.cursor_ + length > this.bytes_.length) {
965 var result = this.bytes_.subarray(this.cursor_, this.cursor_ + length);
967 this.cursor_ += length;
968 goog.asserts.assert(this.cursor_ <= this.end_);
993 var cursor = this.cursor_;
1004 this.cursor_ += 8;