Lines Matching refs:literal_chars
371 DCHECK_NOT_NULL(current_.literal_chars); in is_literal_contextual_keyword()
372 return current_.literal_chars->is_contextual_keyword(keyword); in is_literal_contextual_keyword()
375 DCHECK_NOT_NULL(next_.literal_chars); in is_next_contextual_keyword()
376 return next_.literal_chars->is_contextual_keyword(keyword); in is_next_contextual_keyword()
456 LiteralBuffer* literal_chars; member
473 current_.literal_chars = NULL; in Init()
489 (current_.literal_chars == &literal_buffer0_) in StartLiteral()
491 : (current_.literal_chars == &literal_buffer1_) ? &literal_buffer2_ in StartLiteral()
494 next_.literal_chars = free_buffer; in StartLiteral()
509 DCHECK_NOT_NULL(next_.literal_chars); in INLINE()
510 next_.literal_chars->AddChar(c); in INLINE()
526 next_.literal_chars = NULL; in DropLiteral()
589 DCHECK_NOT_NULL(current_.literal_chars); in literal_one_byte_string()
590 return current_.literal_chars->one_byte_literal(); in literal_one_byte_string()
593 DCHECK_NOT_NULL(current_.literal_chars); in literal_two_byte_string()
594 return current_.literal_chars->two_byte_literal(); in literal_two_byte_string()
597 DCHECK_NOT_NULL(current_.literal_chars); in is_literal_one_byte()
598 return current_.literal_chars->is_one_byte(); in is_literal_one_byte()
601 DCHECK_NOT_NULL(current_.literal_chars); in literal_length()
602 return current_.literal_chars->length(); in literal_length()
607 DCHECK_NOT_NULL(next_.literal_chars); in next_literal_one_byte_string()
608 return next_.literal_chars->one_byte_literal(); in next_literal_one_byte_string()
611 DCHECK_NOT_NULL(next_.literal_chars); in next_literal_two_byte_string()
612 return next_.literal_chars->two_byte_literal(); in next_literal_two_byte_string()
615 DCHECK_NOT_NULL(next_.literal_chars); in is_next_literal_one_byte()
616 return next_.literal_chars->is_one_byte(); in is_next_literal_one_byte()
684 return token.literal_chars->length() != source_length; in LiteralContainsEscapes()