Lines Matching refs:next_
361 Token::Value peek() const { return next_.token; } in peek()
363 Location peek_location() const { return next_.location; } in peek_location()
379 DCHECK_NOT_NULL(next_.literal_chars); in is_next_contextual_keyword()
380 return next_.literal_chars->is_contextual_keyword(keyword); in is_next_contextual_keyword()
496 next_.literal_chars = free_buffer; in StartLiteral()
500 DCHECK_NOT_NULL(next_.literal_chars); in INLINE()
501 next_.literal_chars->AddChar(c); in INLINE()
512 next_.literal_chars = NULL; in DropLiteral()
567 DCHECK_NOT_NULL(next_.literal_chars); in next_literal_one_byte_string()
568 return next_.literal_chars->one_byte_literal(); in next_literal_one_byte_string()
571 DCHECK_NOT_NULL(next_.literal_chars); in next_literal_two_byte_string()
572 return next_.literal_chars->two_byte_literal(); in next_literal_two_byte_string()
575 DCHECK_NOT_NULL(next_.literal_chars); in is_next_literal_one_byte()
576 return next_.literal_chars->is_one_byte(); in is_next_literal_one_byte()
579 DCHECK_NOT_NULL(next_.literal_chars); in next_literal_length()
580 return next_.literal_chars->length(); in next_literal_length()
631 TokenDesc next_; // desc for next token (one token look-ahead) variable