Home
last modified time | relevance | path

Searched refs:kEndOfInput (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/parsing/
Dscanner.cc349 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()
[all …]
Dscanner.h37 static const uc32 kEndOfInput = -1;
54 return kEndOfInput; in Advance()
196 static const uc32 kEndOfInput = Utf16CharacterStream::kEndOfInput; variable
/external/v8/
DChangeLog8832 Fix ExternalTwobyteStringUtf16CharacterStream::PushBack(kEndOfInput)