HomeSort by relevance Sort by last modified time
    Searched refs:c0_ (Results 1 - 6 of 6) 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
  /external/chromium_org/v8/src/
json-parser.h 77 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_ == '\n' || c0_ == '\r')
217 uc32 c0_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
scanner.cc 68 digits[i] = c0_;
69 int d = HexValue(c0_);
229 if (static_cast<unsigned>(c0_) <= 0x7f) {
230 Token::Value token = static_cast<Token::Value>(one_char_tokens[c0_]);
263 while (unicode_cache_->IsWhiteSpace(c0_) || IsByteOrderMark(c0_)) {
265 if (unicode_cache_->IsLineTerminator(c0_)) {
277 if (c0_ == '-' && has_line_terminator_before_next_) {
279 if (c0_ == '-') {
281 if (c0_ == '>')
    [all...]
scanner.h 442 // Set c0_ (one character ahead)
474 AddLiteralChar(c0_);
479 void Advance() { c0_ = source_->Advance(); }
481 source_->PushBack(c0_);
482 c0_ = ch;
492 if (c0_ == next) {
551 // One Unicode character look-ahead; c0_ < 0 at the end of the input.
552 uc32 c0_; member in class:v8::internal::Scanner

Completed in 161 milliseconds