Home | History | Annotate | Download | only in view

Lines Matching refs:combining

185      * Maps Unicode combining diacritical to display-form dead key.
234 private static void addCombining(int combining, int accent) {
235 sCombiningToAccent.append(combining, accent);
236 sAccentToCombining.append(accent, combining);
240 * Maps combinations of (display-form) combining key and second character
266 final int combining = sAccentToCombining.get(accent);
267 if (combining == 0) {
270 final int combination = (combining << 16) | c;
363 * @return The associated character or combining accent, or 0 if none.
479 * Get the character that is produced by combining the dead key producing accent
491 // space should both produce the non-combining version of the combining char.
492 // In this case we don't even need to compute the combining character.
496 int combining = sAccentToCombining.get(accent);
497 if (combining == 0) {
501 final int combination = (combining << 16) | c;
508 sDeadKeyBuilder.append((char)combining);