Lines Matching refs:ch
69 int getProperties(int ch) {
70 char offset = (char)ch;
75 int getPropertiesEx(int ch) {
76 char offset = (char)ch;
81 boolean isOtherLowercase(int ch) {
82 int props = getPropertiesEx(ch);
86 boolean isOtherUppercase(int ch) {
87 int props = getPropertiesEx(ch);
91 boolean isOtherAlphabetic(int ch) {
92 int props = getPropertiesEx(ch);
96 boolean isIdeographic(int ch) {
97 int props = getPropertiesEx(ch);
101 int getType(int ch) {
102 int props = getProperties(ch);
106 boolean isJavaIdentifierStart(int ch) {
107 int props = getProperties(ch);
111 boolean isJavaIdentifierPart(int ch) {
112 int props = getProperties(ch);
116 boolean isUnicodeIdentifierStart(int ch) {
117 int props = getProperties(ch);
121 boolean isUnicodeIdentifierPart(int ch) {
122 int props = getProperties(ch);
126 boolean isIdentifierIgnorable(int ch) {
127 int props = getProperties(ch);
131 int toLowerCase(int ch) {
132 int mapChar = ch;
133 int val = getProperties(ch);
138 mapChar = ch + offset;
143 int toUpperCase(int ch) {
144 int mapChar = ch;
145 int val = getProperties(ch);
150 mapChar = ch - offset;
151 } else if (ch == 0x00B5) {
158 int toTitleCase(int ch) {
159 return toUpperCase(ch);
162 int digit(int ch, int radix) {
165 int val = getProperties(ch);
168 value = ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit;
172 value = (ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit) + 10;
178 int getNumericValue(int ch) {
179 int val = getProperties(ch);
188 retval = ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit;
194 retval = (ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit) + 10;
200 boolean isWhitespace(int ch) {
201 int props = getProperties(ch);
205 byte getDirectionality(int ch) {
206 int val = getProperties(ch);
215 boolean isMirrored(int ch) {
216 int props = getProperties(ch);
220 int toUpperCaseEx(int ch) {
221 int mapChar = ch;
222 int val = getProperties(ch);
227 mapChar = ch - offset;
230 switch(ch) {
242 char[] toUpperCaseCharArray(int ch) {
243 char[] upperMap = {(char)ch};
244 if (ch == 0x00DF) {