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

/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java186 * Maps Unicode combining diacritical to display-form dead key.
235 private static void addCombining(int combining, int accent) { argument
236 sCombiningToAccent.append(combining, accent);
237 sAccentToCombining.append(accent, combining);
241 * Maps combinations of (display-form) combining key and second character
267 final int combining = sAccentToCombining.get(accent);
268 if (combining == 0) {
271 final int combination = (combining << 16) | c;
364 * @return The associated character or combining accent, or 0 if none.
478 * Get the character that is produced by combining th
[all...]

Completed in 43 milliseconds