HomeSort by relevance Sort by last modified time
    Searched refs:kEndOfInput (Results 1 - 2 of 2) sorted by null

  /external/v8/src/parsing/
scanner.cc 449 if (c0_ == kEndOfInput) break;
496 while (c0_ != kEndOfInput && !unicode_cache_->IsLineTerminator(c0_)) {
506 while (c0_ != kEndOfInput && !unicode_cache_->IsLineTerminator(c0_)) {
517 if (c0_ == kEndOfInput || !unicode_cache_->IsWhiteSpace(c0_)) return;
520 while (c0_ != kEndOfInput &&
539 while (c0_ != kEndOfInput && unicode_cache_->IsWhiteSpace(c0_)) {
542 while (c0_ != kEndOfInput && !unicode_cache_->IsLineTerminator(c0_)) {
555 while (c0_ != kEndOfInput && !unicode_cache_->IsLineTerminator(c0_)) {
569 while (c0_ != kEndOfInput) {
572 if (c0_ != kEndOfInput && unicode_cache_->IsLineTerminator(ch))
    [all...]
scanner.h 37 static const uc32 kEndOfInput = -1;
42 // stream. If there are no more code units it returns kEndOfInput.
50 // parser problem! The scanner treats the final kEndOfInput as
54 return kEndOfInput;
196 static const uc32 kEndOfInput = Utf16CharacterStream::kEndOfInput;

Completed in 286 milliseconds