HomeSort by relevance Sort by last modified time
    Searched refs:c0_ (Results 1 - 3 of 3) 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.cc 67 digits[i] = c0_;
68 int d = HexValue(c0_);
228 if (static_cast<unsigned>(c0_) <= 0x7f) {
229 Token::Value token = static_cast<Token::Value>(one_char_tokens[c0_]);
262 while (unicode_cache_->IsWhiteSpace(c0_) || IsByteOrderMark(c0_)) {
264 if (unicode_cache_->IsLineTerminator(c0_)) {
276 if (c0_ == '-' && has_line_terminator_before_next_) {
278 if (c0_ == '-') {
280 if (c0_ == '>')
    [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 62 milliseconds