Home | History | Annotate | Download | only in intltest

Lines Matching full:case

187             case EMPTY:    // NULL name
189 case NO_VAR: // new name
196 case NO_REF: // exist name, no ref
199 case HAS_REF: // exist name, has ref
348 case BSLASH_ONLY :
350 case QUOTE_ONLY:
352 case QUOTE_AND_BSLAH:
612 case 0: // copy last -- has 10 times chance than others
615 case 1: // copy both
619 case 2: // copy both
623 case 3:
626 case 4: // copy nothing
827 case START:
830 case '?' : tokenType = QUESTION; break;
831 case '*' : tokenType = STAR; break;
832 case '+' : tokenType = PLUS; break;
833 case '{' : tokenType = LBRACE; break;
834 case '}' : tokenType = RBRACE; break;
835 case '(' : tokenType = LPAR; break;
836 case ')' : tokenType = RPAR; break;
837 case ';' : tokenType = SEMI; break;
838 case '=' : tokenType = EQ; break;
839 case ',' : tokenType = COMMA; break;
840 case '|' : tokenType = BAR; break;
841 case '@' : tokenType = AT; break;
842 case '~' : tokenType = WAVE; break;
843 case '%' : tokenType = PERCENT; break;
844 case 0 : tokenType = STREAM_END; working-- /*avoid buffer overflow*/; break;
853 case '$' : state = IN_VAR_FIRST; token.append(c); break;
854 case '\'' : state = IN_QUOTE; break;
855 case '\\' : state = IN_BSLASH; break;
863 case IN_NUM:
870 case IN_VAR_FIRST:
878 case IN_VAR:
885 case IN_STRING:
902 case IN_QUOTE:
911 case IN_QUOTE_BSLASH:
912 case IN_BSLASH:
914 case 'n' : token.append('\n'); break;
915 case 'r' : token.append('\r'); break;
916 case 't' : token.append('\t'); break;
917 case '\'' : token.append('\''); break;
918 case '\\' : token.append('\\'); break;
927 case DONE: /* should never happen */
979 case QUESTION:
986 case STAR:
992 case PLUS:
998 case LBRACE:
1070 case LPAR:
1076 case VAR:
1080 case STRING:
1097 case WAVE:
1101 case AT:
1105 case QUESTION:
1106 case STAR:
1107 case PLUS:
1108 case LBRACE:
1111 case SEMI: // rule definiation closed
1112 case RPAR: // within parenthesis (core closed)
1113 case BAR: // in alternation
1114 case NUMBER: // in alternation, with weight
1115 case LPAR: // in sequence
1116 case VAR: // in sequence
1117 case STRING: // in sequence