Lines Matching refs:next_
245 if (next_.token == Token::EOS) { in Next()
246 next_.location.beg_pos = current_.location.beg_pos; in Next()
247 next_.location.end_pos = current_.location.end_pos; in Next()
249 current_ = next_; in Next()
251 next_ = next_next_; in Next()
262 next_.token = token; in Next()
263 next_.location.beg_pos = pos; in Next()
264 next_.location.end_pos = pos + 1; in Next()
285 Token::Value ret = next_.token; in PeekAhead()
286 next_next_ = next_; in PeekAhead()
287 next_ = current_; in PeekAhead()
470 next_.literal_chars = NULL; in Scan()
471 next_.raw_literal_chars = NULL; in Scan()
475 next_.location.beg_pos = source_pos(); in Scan()
734 next_.location.end_pos = source_pos(); in Scan()
735 next_.token = token; in Scan()
742 if (pos == next_.location.beg_pos) return; in SeekForward()
744 DCHECK_EQ(next_.location.end_pos, current_pos); in SeekForward()
952 next_.location.end_pos = source_pos(); in ScanTemplateSpan()
953 next_.token = result; in ScanTemplateSpan()
960 next_.location.beg_pos = source_pos(); in ScanTemplateStart()
967 DCHECK_EQ(next_.token, Token::RBRACE); in ScanTemplateContinuation()
968 next_.location.beg_pos = source_pos() - 1; // We already consumed } in ScanTemplateContinuation()
1070 if (next_.literal_chars->one_byte_literal().length() <= 10 && in ScanNumber()
1072 next_.smi_value_ = static_cast<int>(value); in ScanNumber()
1306 Vector<const uint8_t> chars = next_.literal_chars->one_byte_literal(); in ScanIdentifierOrKeyword()
1355 if (next_.literal_chars->is_one_byte()) { in ScanIdentifierOrKeyword()
1356 Vector<const uint8_t> chars = next_.literal_chars->one_byte_literal(); in ScanIdentifierOrKeyword()
1384 if (escaped && next_.literal_chars->is_one_byte()) { in ScanIdentifierSuffix()
1385 Vector<const uint8_t> chars = next_.literal_chars->one_byte_literal(); in ScanIdentifierSuffix()
1398 next_.location.beg_pos = source_pos() - (seen_equal ? 2 : 1); in ScanRegExpPattern()
1399 next_.location.end_pos = source_pos() - (seen_equal ? 1 : 0); in ScanRegExpPattern()
1470 next_.location.end_pos = source_pos(); in ScanRegExpFlags()
1529 CopyTokenDesc(&bookmark_next_, &next_); in SetBookmark()
1543 CopyTokenDesc(&next_, &bookmark_current_); in ResetToBookmark()
1544 current_ = next_; in ResetToBookmark()
1547 CopyTokenDesc(&next_, &bookmark_next_); in ResetToBookmark()