Lines Matching refs:cursor_
88 this.cursor_ = 0;
159 this.cursor_ = 0;
186 this.cursor_ = this.start_;
210 this.cursor_ = this.start_;
219 return this.cursor_;
228 this.cursor_ = cursor;
237 this.cursor_ += count;
238 goog.asserts.assert(this.cursor_ <= this.end_);
247 return this.cursor_ == this.end_;
256 return this.cursor_ > this.end_;
266 (this.cursor_ < 0) ||
267 (this.cursor_ > this.end_);
297 temp = this.bytes_[this.cursor_++];
303 temp = this.bytes_[this.cursor_++];
311 temp = this.bytes_[this.cursor_++];
364 var cursor = this.cursor_;
365 this.cursor_ += 8;
380 while (this.bytes_[this.cursor_] & 0x80) {
381 this.cursor_++;
383 this.cursor_++;
394 this.cursor_--;
397 this.cursor_--;
423 temp = bytes[this.cursor_ + 0];
426 this.cursor_ += 1;
427 goog.asserts.assert(this.cursor_ <= this.end_);
431 temp = bytes[this.cursor_ + 1];
434 this.cursor_ += 2;
435 goog.asserts.assert(this.cursor_ <= this.end_);
439 temp = bytes[this.cursor_ + 2];
442 this.cursor_ += 3;
443 goog.asserts.assert(this.cursor_ <= this.end_);
447 temp = bytes[this.cursor_ + 3];
450 this.cursor_ += 4;
451 goog.asserts.assert(this.cursor_ <= this.end_);
455 temp = bytes[this.cursor_ + 4];
460 this.cursor_ += 5;
461 goog.asserts.assert(this.cursor_ <= this.end_);
467 this.cursor_ += 5;
468 if (bytes[this.cursor_++] >= 128 &&
469 bytes[this.cursor_++] >= 128 &&
470 bytes[this.cursor_++] >= 128 &&
471 bytes[this.cursor_++] >= 128 &&
472 bytes[this.cursor_++] >= 128) {
477 goog.asserts.assert(this.cursor_ <= this.end_);
639 var a = this.bytes_[this.cursor_ + 0];
640 this.cursor_ += 1;
641 goog.asserts.assert(this.cursor_ <= this.end_);
652 var a = this.bytes_[this.cursor_ + 0];
653 var b = this.bytes_[this.cursor_ + 1];
654 this.cursor_ += 2;
655 goog.asserts.assert(this.cursor_ <= this.end_);
666 var a = this.bytes_[this.cursor_ + 0];
667 var b = this.bytes_[this.cursor_ + 1];
668 var c = this.bytes_[this.cursor_ + 2];
669 var d = this.bytes_[this.cursor_ + 3];
670 this.cursor_ += 4;
671 goog.asserts.assert(this.cursor_ <= this.end_);
711 var a = this.bytes_[this.cursor_ + 0];
712 this.cursor_ += 1;
713 goog.asserts.assert(this.cursor_ <= this.end_);
724 var a = this.bytes_[this.cursor_ + 0];
725 var b = this.bytes_[this.cursor_ + 1];
726 this.cursor_ += 2;
727 goog.asserts.assert(this.cursor_ <= this.end_);
738 var a = this.bytes_[this.cursor_ + 0];
739 var b = this.bytes_[this.cursor_ + 1];
740 var c = this.bytes_[this.cursor_ + 2];
741 var d = this.bytes_[this.cursor_ + 3];
742 this.cursor_ += 4;
743 goog.asserts.assert(this.cursor_ <= this.end_);
808 return !!this.bytes_[this.cursor_++];
832 var cursor = this.cursor_;
878 this.cursor_ = cursor;
903 this.cursor_ + length > this.bytes_.length) {
909 var result = this.bytes_.subarray(this.cursor_, this.cursor_ + length);
911 this.cursor_ += length;
912 goog.asserts.assert(this.cursor_ <= this.end_);
936 var cursor = this.cursor_;
947 this.cursor_ += 8;