Lines Matching refs:UChar
53 static const UChar DOT = ((UChar) 0x002E);
54 static const UChar SINGLE_QUOTE = ((UChar) 0x0027);
55 static const UChar SLASH = ((UChar) 0x002F);
56 static const UChar BACKSLASH = ((UChar) 0x005C);
57 static const UChar SPACE = ((UChar) 0x0020);
58 static const UChar EXCLAMATION = ((UChar) 0x0021);
59 static const UChar QUOTATION_MARK = ((UChar) 0x0022);
60 static const UChar NUMBER_SIGN = ((UChar) 0x0023);
61 static const UChar PERCENT_SIGN = ((UChar) 0x0025);
62 static const UChar ASTERISK = ((UChar) 0x002A);
63 static const UChar COMMA = ((UChar) 0x002C);
64 static const UChar HYPHEN = ((UChar) 0x002D);
65 static const UChar U_ZERO = ((UChar) 0x0030);
66 static const UChar U_ONE = ((UChar) 0x0031);
67 static const UChar U_TWO = ((UChar) 0x0032);
68 static const UChar U_THREE = ((UChar) 0x0033);
69 static const UChar U_FOUR = ((UChar) 0x0034);
70 static const UChar U_FIVE = ((UChar) 0x0035);
71 static const UChar U_SIX = ((UChar) 0x0036);
72 static const UChar U_SEVEN = ((UChar) 0x0037);
73 static const UChar U_EIGHT = ((UChar) 0x0038);
74 static const UChar U_NINE = ((UChar) 0x0039);
75 static const UChar COLON = ((UChar) 0x003A);
76 static const UChar SEMI_COLON = ((UChar) 0x003B);
77 static const UChar EQUALS = ((UChar) 0x003D);
78 static const UChar AT = ((UChar) 0x0040);
79 static const UChar CAP_A = ((UChar) 0x0041);
80 static const UChar CAP_B = ((UChar) 0x0042);
81 static const UChar CAP_R = ((UChar) 0x0052);
82 static const UChar CAP_Z = ((UChar) 0x005A);
83 static const UChar LOWLINE = ((UChar) 0x005F);
84 static const UChar LEFTBRACE = ((UChar) 0x007B);
85 static const UChar RIGHTBRACE = ((UChar) 0x007D);
86 static const UChar TILDE = ((UChar) 0x007E);
87 static const UChar ELLIPSIS = ((UChar) 0x2026);
89 static const UChar LOW_A = ((UChar) 0x0061);
90 static const UChar LOW_B = ((UChar) 0x0062);
91 static const UChar LOW_C = ((UChar) 0x0063);
92 static const UChar LOW_D = ((UChar) 0x0064);
93 static const UChar LOW_E = ((UChar) 0x0065);
94 static const UChar LOW_F = ((UChar) 0x0066);
95 static const UChar LOW_G = ((UChar) 0x0067);
96 static const UChar LOW_H = ((UChar) 0x0068);
97 static const UChar LOW_I = ((UChar) 0x0069);
98 static const UChar LOW_J = ((UChar) 0x006a);
99 static const UChar LOW_K = ((UChar) 0x006B);
100 static const UChar LOW_L = ((UChar) 0x006C);
101 static const UChar LOW_M = ((UChar) 0x006D);
102 static const UChar LOW_N = ((UChar) 0x006E);
103 static const UChar LOW_O = ((UChar) 0x006F);
104 static const UChar LOW_P = ((UChar) 0x0070);
105 static const UChar LOW_Q = ((UChar) 0x0071);
106 static const UChar LOW_R = ((UChar) 0x0072);
107 static const UChar LOW_S = ((UChar) 0x0073);
108 static const UChar LOW_T = ((UChar) 0x0074);
109 static const UChar LOW_U = ((UChar) 0x0075);
110 static const UChar LOW_V = ((UChar) 0x0076);
111 static const UChar LOW_W = ((UChar) 0x0077);
112 static const UChar LOW_Y = ((UChar) 0x0079);
113 static const UChar LOW_Z = ((UChar) 0x007A);
166 static tokenType charType(UChar ch);