Lines Matching refs:cursor_
238 cursor_ = chars_ + start;
239 end_ = cursor_ + length;
270 arg1 = factory->LookupSingleCharacterStringFromCode(*cursor_);
296 cursor_ = end_;
340 cursor_ = std::find_if(cursor_, end_, [this](Char c) {
366 const Char* start = cursor_;
381 cursor_ = std::find_if(cursor_ + 1, end_, [&index](Char c) {
401 // Reset cursor_ to start if the key is not an index.
402 cursor_ = start;
897 cursor_ =
898 std::find_if(cursor_, end_, [](Char c) { return !IsDecimalDigit(c); });
907 const Char* start = cursor_;
910 base::uc32 c = *cursor_;
932 const Char* smi_start = cursor_;
934 if (V8_UNLIKELY(smi_start == cursor_)) {
943 if ((cursor_ - smi_start) <= kMaxSmiLength &&
949 for (; smi_start != cursor_; smi_start++) {
979 base::Vector<const Char> chars(start, cursor_ - start);
1130 cursor_ = std::find_if(cursor_, end_, [&bits](Char c) {
1144 if (*cursor_ == '"') {
1154 if (*cursor_ == '\\') {
1199 DCHECK_LT(*cursor_, 0x20);
1201 ReportUnexpectedCharacter(*cursor_);