Lines Matching refs:ch

68     int getProperties(int ch) {
69 char offset = (char)ch;
74 int getPropertiesEx(int ch) {
75 char offset = (char)ch;
80 boolean isOtherLowercase(int ch) {
81 int props = getPropertiesEx(ch);
85 boolean isOtherUppercase(int ch) {
86 int props = getPropertiesEx(ch);
90 boolean isOtherAlphabetic(int ch) {
91 int props = getPropertiesEx(ch);
95 boolean isIdeographic(int ch) {
96 int props = getPropertiesEx(ch);
100 int getType(int ch) {
101 int props = getProperties(ch);
105 boolean isJavaIdentifierStart(int ch) {
106 int props = getProperties(ch);
110 boolean isJavaIdentifierPart(int ch) {
111 int props = getProperties(ch);
115 boolean isUnicodeIdentifierStart(int ch) {
116 int props = getProperties(ch);
120 boolean isUnicodeIdentifierPart(int ch) {
121 int props = getProperties(ch);
125 boolean isIdentifierIgnorable(int ch) {
126 int props = getProperties(ch);
130 int toLowerCase(int ch) {
131 int mapChar = ch;
132 int val = getProperties(ch);
136 mapChar = ch + offset;
141 int toUpperCase(int ch) {
142 int mapChar = ch;
143 int val = getProperties(ch);
147 mapChar = ch - offset;
152 int toTitleCase(int ch) {
153 int mapChar = ch;
154 int val = getProperties(ch);
161 mapChar = ch + 1;
166 mapChar = ch - 1;
171 // return ch;
177 mapChar = toUpperCase(ch);
182 int digit(int ch, int radix) {
185 int val = getProperties(ch);
188 value = ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit;
192 value = (ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit) + 10;
198 int getNumericValue(int ch) {
199 int val = getProperties(ch);
208 retval = ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit;
214 retval = (ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit) + 10;
220 boolean isWhitespace(int ch) {
221 int props = getProperties(ch);
225 byte getDirectionality(int ch) {
226 int val = getProperties(ch);
234 boolean isMirrored(int ch) {
235 int props = getProperties(ch);