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

/external/v8/src/
H A Djson-parser.h59 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_
162 uc32 c0_; member in class:v8::internal::BASE_EMBEDDED
[all...]
H A Dscanner.cc67 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...]
H A Dscanner.h449 // 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
/external/chromium_org/v8/src/
H A Djson-parser.h77 c0_ = kEndOfString;
79 c0_ = seq_source_->SeqOneByteStringGet(position_);
81 c0_ = source_->Get(position_);
92 } while (c0_ == ' ' || c0_ == '\t' || c0_ == '\n' || c0_ == '\r');
96 while (c0_ == ' ' || c0_ == '\t' || c0_
217 uc32 c0_; member in class:v8::internal::BASE_EMBEDDED
[all...]
H A Dscanner.cc72 digits[i] = c0_;
73 int d = HexValue(c0_);
233 if (static_cast<unsigned>(c0_) <= 0x7f) {
234 Token::Value token = static_cast<Token::Value>(one_char_tokens[c0_]);
267 while (unicode_cache_->IsWhiteSpace(c0_) || IsByteOrderMark(c0_)) {
269 if (unicode_cache_->IsLineTerminator(c0_)) {
281 if (c0_ == '-' && has_line_terminator_before_next_) {
283 if (c0_ == '-') {
285 if (c0_
[all...]
H A Dscanner.h495 // Set c0_ (one character ahead)
527 AddLiteralChar(c0_);
532 void Advance() { c0_ = source_->Advance(); }
534 source_->PushBack(c0_);
535 c0_ = ch;
545 if (c0_ == next) {
604 // One Unicode character look-ahead; c0_ < 0 at the end of the input.
605 uc32 c0_; member in class:v8::internal::Scanner

Completed in 305 milliseconds