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

  /external/v8/src/
json-parser.h 59 c0_ = kEndOfString;
61 c0_ = seq_source_->SeqAsciiStringGet(position_);
63 c0_ = source_->Get(position_);
74 } while (c0_ == '\t' || c0_ == '\r' || c0_ == '\n' || c0_ == ' ');
78 while (c0_ == '\t' || c0_ == '\r' || c0_ == '\n' || c0_ == ' ')
162 uc32 c0_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
scanner.h 449 // Set c0_ (one character ahead)
481 AddLiteralChar(c0_);
486 void Advance() { c0_ = source_->Advance(); }
488 source_->PushBack(c0_);
489 c0_ = ch;
499 if (c0_ == next) {
555 // One Unicode character look-ahead; c0_ < 0 at the end of the input.
556 uc32 c0_; member in class:v8::internal::Scanner

Completed in 219 milliseconds