Lines Matching refs:kEndOfInput

349       if (c0_ == kEndOfInput) break;  in SkipWhiteSpace()
396 while (c0_ != kEndOfInput && !unicode_cache_->IsLineTerminator(c0_)) { in SkipSingleLineComment()
406 while (c0_ != kEndOfInput && !unicode_cache_->IsLineTerminator(c0_)) { in SkipSourceURLComment()
417 if (c0_ == kEndOfInput || !unicode_cache_->IsWhiteSpace(c0_)) return; in TryToParseSourceURLComment()
420 while (c0_ != kEndOfInput && in TryToParseSourceURLComment()
439 while (c0_ != kEndOfInput && unicode_cache_->IsWhiteSpace(c0_)) { in TryToParseSourceURLComment()
442 while (c0_ != kEndOfInput && !unicode_cache_->IsLineTerminator(c0_)) { in TryToParseSourceURLComment()
455 while (c0_ != kEndOfInput && !unicode_cache_->IsLineTerminator(c0_)) { in TryToParseSourceURLComment()
469 while (c0_ != kEndOfInput) { in SkipMultiLineComment()
472 if (c0_ != kEndOfInput && unicode_cache_->IsLineTerminator(ch)) { in SkipMultiLineComment()
756 if (c0_ == kEndOfInput) { in Scan()
848 if (!in_template_literal && c0_ != kEndOfInput && in ScanEscape()
935 if (c0_ == kEndOfInput || c0_ == '\n' || c0_ == '\r') return Token::ILLEGAL; in ScanString()
947 while (c0_ != quote && c0_ != kEndOfInput && in ScanString()
952 if (c0_ == kEndOfInput || !ScanEscape<false, false>()) { in ScanString()
998 if (c0_ != kEndOfInput && unicode_cache_->IsLineTerminator(c0_)) { in ScanTemplateSpan()
1196 (c0_ != kEndOfInput && unicode_cache_->IsIdentifierStart(c0_))) in ScanNumber()
1423 while (c0_ != kEndOfInput && unicode_cache_->IsIdentifierPart(c0_)) { in ScanIdentifierOrKeyword()
1449 while (c0_ != kEndOfInput && unicode_cache_->IsIdentifierPart(c0_)) { in ScanIdentifierSuffix()
1506 if (c0_ == kEndOfInput || unicode_cache_->IsLineTerminator(c0_)) in ScanRegExpPattern()
1510 if (c0_ == kEndOfInput || unicode_cache_->IsLineTerminator(c0_)) in ScanRegExpPattern()
1542 while (c0_ != kEndOfInput && unicode_cache_->IsIdentifierPart(c0_)) { in ScanRegExpFlags()