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 int getType(int ch) {
82 int props = getProperties(ch);
86 boolean isOtherLowercase(int ch) {
87 int props = getPropertiesEx(ch);
91 boolean isOtherUppercase(int ch) {
92 int props = getPropertiesEx(ch);
96 boolean isOtherAlphabetic(int ch) {
97 int props = getPropertiesEx(ch);
101 boolean isIdeographic(int ch) {
102 int props = getPropertiesEx(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);
137 mapChar = ch + offset;
142 int toUpperCase(int ch) {
143 int mapChar = ch;
144 int val = getProperties(ch);
148 mapChar = ch - offset;
153 int toTitleCase(int ch) {
154 int mapChar = ch;
155 int val = getProperties(ch);
162 mapChar = ch + 1;
167 mapChar = ch - 1;
172 // return ch;
178 mapChar = toUpperCase(ch);
183 int digit(int ch, int radix) {
186 int val = getProperties(ch);
189 value = ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit;
193 value = (ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit) + 10;
199 int getNumericValue(int ch) {
200 int val = getProperties(ch);
209 retval = ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit;
212 switch(ch) {
325 retval = (ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit) + 10;
331 boolean isWhitespace(int ch) {
332 int props = getProperties(ch);
336 byte getDirectionality(int ch) {
337 int val = getProperties(ch);
345 boolean isMirrored(int ch) {
346 int props = getProperties(ch);