Searched refs:c0_ (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/v8/src/
H A Djson-parser.h54 c0_ = kEndOfString;
56 c0_ = seq_source_->SeqOneByteStringGet(position_);
58 c0_ = source_->Get(position_);
69 } while (c0_ == ' ' || c0_ == '\t' || c0_ == '\n' || c0_ == '\r');
73 while (c0_ == ' ' || c0_ == '\t' || c0_
197 uc32 c0_; member in class:v8::internal::BASE_EMBEDDED
[all...]
H A Dscanner.cc62 digits[i] = c0_;
63 int d = HexValue(c0_);
223 if (static_cast<unsigned>(c0_) <= 0x7f) {
224 Token::Value token = static_cast<Token::Value>(one_char_tokens[c0_]);
259 if (unicode_cache_->IsLineTerminator(c0_)) {
261 } else if (!unicode_cache_->IsWhiteSpace(c0_) &&
262 !IsLittleEndianByteOrderMark(c0_)) {
272 if (c0_ == '-' && has_line_terminator_before_next_) {
274 if (c0_ == '-') {
276 if (c0_
[all...]
H A Dscanner.h484 // Set c0_ (one character ahead)
516 AddLiteralChar(c0_);
521 void Advance() { c0_ = source_->Advance(); }
523 source_->PushBack(c0_);
524 c0_ = ch;
534 if (c0_ == next) {
640 // One Unicode character look-ahead; c0_ < 0 at the end of the input.
641 uc32 c0_; member in class:v8::internal::Scanner

Completed in 175 milliseconds