Lines Matching refs:ch

146                     char ch = groupChars.charAt(0);
147 if (Character.isHighSurrogate(ch) && groupChars.length() == 2) {
148 addOrder(Character.toCodePoint(ch, groupChars.charAt(1)), order);
153 char ch = groupChars.charAt(0);
154 addOrder(ch, order);
271 int ch = order - CHARINDEX;
274 int realValue = getCharOrder(ch);
278 valueList[j] = IGNORABLEMASK & ch;
323 private final void addOrder(int ch, int anOrder)
326 int order = mapping.elementAt(ch);
333 if (Character.isSupplementaryCodePoint(ch)) {
334 length = Character.toChars(ch, keyBuf, 0);
336 keyBuf[0] = (char)ch;
342 mapping.setElementAt(ch, anOrder);
361 int ch = groupChars.codePointAt(0);
364 int ch = Character.isHighSurrogate(ch0)?
368 int entry = mapping.elementAt(ch);
379 entryTable.addElement(new EntryPair(groupChars.substring(0,Character.charCount(ch)), entry));
380 mapping.setElementAt(ch, tableIndex);
423 int ch = groupChars.codePointAt(0);
426 int ch = Character.isHighSurrogate(ch0)?
429 Vector entryTable = getContractValues(ch);
441 private final int getCharOrder(int ch) {
442 int order = mapping.elementAt(ch);
455 * @param ch the starting character of the contracting string
457 private Vector getContractValues(int ch)
459 int index = mapping.elementAt(ch);
487 char ch = contractChars.charAt(0);
488 if (Character.isHighSurrogate(ch) && contractChars.length() == 2) {
492 addOrder(Character.toCodePoint(ch, ch2), tableIndex);
502 private final void addExpandOrder(int ch, String expandChars, int anOrder)
506 addOrder(ch, tableIndex);
531 int ch;
539 ch = Character.toCodePoint(ch0, ch1);
542 ch = ch0;
545 int mapValue = getCharOrder(ch);
551 valueList[j++] = CHARINDEX + ch;