Searched defs:combining (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java185 * Maps Unicode combining diacritical to display-form dead key.
234 private static void addCombining(int combining, int accent) { argument
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 th
[all...]

Completed in 65 milliseconds