Home | History | Annotate | Download | only in src

Lines Matching full:case

76     *cursor_++ = c;  // Common case: 7-bit ASCII.
220 case INITIAL: {
222 // Match only lower-case letters in range 'b'..'w'.
235 case KEYWORD_PREFIX:
246 case KEYWORD_MATCHED:
249 case C:
253 case CA:
254 if (MatchKeywordStart(input, "case", 2, Token::CASE)) return;
257 case CO:
260 case CON:
264 case D:
268 case DE:
273 case F:
279 case I:
283 case IN:
289 case N:
294 case T:
299 case TH:
303 case TR:
307 case V:
311 case W:
538 case '\t':
539 case '\r':
540 case '\n':
541 case ' ':
545 case '{':
549 case '}':
553 case '[':
557 case ']':
561 case ':':
565 case ',':
569 case '"':
572 case '-':
573 case '0':
574 case '1':
575 case '2':
576 case '3':
577 case '4':
578 case '5':
579 case '6':
580 case '7':
581 case '8':
582 case '9':
585 case 't':
588 case 'f':
591 case 'n':
622 case '"':
623 case '\\':
624 case '/':
627 case 'b':
630 case 'f':
633 case 'n':
636 case 'r':
639 case 't':
642 case 'u': {
725 case ' ':
726 case '\t':
731 case '\n':
737 case '"': case '\'':
741 case '<':
755 case '>':
775 case '=':
785 case '!':
795 case '+':
807 case '-':
826 case '*':
831 case '%':
836 case '/':
850 case '&':
862 case '|':
874 case '^':
879 case '.':
889 case ':':
893 case ';':
897 case ',':
901 case '(':
905 case ')':
909 case '[':
913 case ']':
917 case '{':
921 case '}':
925 case '?':
929 case '~':
1022 case '\'': // fall through
1023 case '"' : // fall through
1024 case '\\': break;
1025 case 'b' : c = '\b'; break;
1026 case 'f' : c = '\f'; break;
1027 case 'n' : c = '\n'; break;
1028 case 'r' : c = '\r'; break;
1029 case 't' : c = '\t'; break;
1030 case 'u' : c = ScanHexEscape(c, 4); break;
1031 case 'v' : c = '\v'; break;
1032 case 'x' : c = ScanHexEscape(c, 2); break;
1033 case '0' : // fall through
1034 case '1' : // fall through
1035 case '2' : // fall through
1036 case '3' : // fall through
1037 case '4' : // fall through
1038 case '5' : // fall through
1039 case '6' : // fall through
1040 case '7' : c = ScanOctalEscape(c, 2); break;
1243 // Previous token is either '/' or '/=', in the second case, the