Lines Matching refs:next_
235 if (next_.token == Token::EOS) { in Next()
236 next_.location.beg_pos = current_.location.beg_pos; in Next()
237 next_.location.end_pos = current_.location.end_pos; in Next()
239 current_ = next_; in Next()
241 next_ = next_next_; in Next()
251 next_.token = token; in Next()
252 next_.location.beg_pos = pos; in Next()
253 next_.location.end_pos = pos + 1; in Next()
269 Token::Value ret = next_.token; in PeekAhead()
270 next_next_ = next_; in PeekAhead()
271 next_ = current_; in PeekAhead()
451 next_.literal_chars = NULL; in Scan()
452 next_.raw_literal_chars = NULL; in Scan()
456 next_.location.beg_pos = source_pos(); in Scan()
708 next_.location.end_pos = source_pos(); in Scan()
709 next_.token = token; in Scan()
716 if (pos == next_.location.beg_pos) return; in SeekForward()
718 DCHECK_EQ(next_.location.end_pos, current_pos); in SeekForward()
928 next_.location.end_pos = source_pos(); in ScanTemplateSpan()
929 next_.token = result; in ScanTemplateSpan()
936 next_.location.beg_pos = source_pos(); in ScanTemplateStart()
943 DCHECK_EQ(next_.token, Token::RBRACE); in ScanTemplateContinuation()
944 next_.location.beg_pos = source_pos() - 1; // We already consumed } in ScanTemplateContinuation()
1037 if (next_.literal_chars->one_byte_literal().length() <= 10 && in ScanNumber()
1039 next_.smi_value_ = static_cast<int>(value); in ScanNumber()
1263 Vector<const uint8_t> chars = next_.literal_chars->one_byte_literal(); in ScanIdentifierOrKeyword()
1312 if (next_.literal_chars->is_one_byte()) { in ScanIdentifierOrKeyword()
1313 Vector<const uint8_t> chars = next_.literal_chars->one_byte_literal(); in ScanIdentifierOrKeyword()
1341 if (escaped && next_.literal_chars->is_one_byte()) { in ScanIdentifierSuffix()
1342 Vector<const uint8_t> chars = next_.literal_chars->one_byte_literal(); in ScanIdentifierSuffix()
1355 next_.location.beg_pos = source_pos() - (seen_equal ? 2 : 1); in ScanRegExpPattern()
1356 next_.location.end_pos = source_pos() - (seen_equal ? 1 : 0); in ScanRegExpPattern()
1429 next_.location.end_pos = source_pos(); in ScanRegExpFlags()
1488 CopyTokenDesc(&bookmark_next_, &next_); in SetBookmark()
1502 CopyTokenDesc(&next_, &bookmark_current_); in ResetToBookmark()
1503 current_ = next_; in ResetToBookmark()
1506 CopyTokenDesc(&next_, &bookmark_next_); in ResetToBookmark()