Lines Matching defs:c0_

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_ == ' ') {
85 return c0_;
91 if (c0_ == c) {
162 uc32 c0_;
183 if (result.is_null() || c0_ != kEndOfString) {
190 switch (c0_) {
215 Handle<Object> name = LookupSingleCharacterStringFromCode(c0_);
236 switch (c0_) {
292 ASSERT_EQ(c0_, '{');
295 if (c0_ != '}') {
297 if (c0_ != '"') return ReportUnexpectedCharacter();
299 if (key.is_null() || c0_ != ':') return ReportUnexpectedCharacter();
314 if (c0_ != '}') {
327 ASSERT_EQ(c0_, '[');
330 if (c0_ != ']') {
336 if (c0_ != ']') {
355 if (c0_ == '-') {
359 if (c0_ == '0') {
363 if ('0' <= c0_ && c0_ <= '9') return ReportUnexpectedCharacter();
367 if (c0_ < '1' || c0_ > '9') return ReportUnexpectedCharacter();
369 i = i * 10 + c0_ - '0';
372 } while (c0_ >= '0' && c0_ <= '9');
373 if (c0_ != '.' && c0_ != 'e' && c0_ != 'E' && digits < 10) {
378 if (c0_ == '.') {
380 if (c0_ < '0' || c0_ > '9') return ReportUnexpectedCharacter();
383 } while (c0_ >= '0' && c0_ <= '9');
385 if (AsciiAlphaToLower(c0_) == 'e') {
387 if (c0_ == '-' || c0_ == '+') Advance();
388 if (c0_ < '0' || c0_ > '9') return ReportUnexpectedCharacter();
391 } while (c0_ >= '0' && c0_ <= '9');
461 while (c0_ != '"') {
463 if (c0_ < 0x20) return Handle<String>::null();
468 if (c0_ != '\\') {
475 c0_ <= kMaxAsciiCharCode) {
476 SeqStringSet(seq_str, count++, c0_);
484 switch (c0_) {
488 SeqStringSet(seq_str, count++, c0_);
509 int digit = HexValue(c0_);
546 ASSERT_EQ('"', c0_);
556 ASSERT_EQ('"', c0_);
558 if (c0_ == '"') {
566 if (c0_ < 0x20) return Handle<String>::null();
567 if (c0_ != '\\') {
568 if (seq_ascii || c0_ <= kMaxAsciiCharCode) {
580 } while (c0_ != '"');
592 ASSERT_EQ('"', c0_);