Home
last modified time | relevance | path

Searched refs:literal_chars (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/parsing/
Dscanner.h371 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()
[all …]
Dscanner.cc43 bookmark_current_.literal_chars = &bookmark_current_literal_; in Scanner()
45 bookmark_next_.literal_chars = &bookmark_next_literal_; in Scanner()
451 next_.literal_chars = NULL; in Scan()
1037 if (next_.literal_chars->one_byte_literal().length() <= 10 && 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()
1528 to->literal_chars->CopyFrom(from->literal_chars); in CopyTokenDesc()