HomeSort by relevance Sort by last modified time
    Searched defs:combining (Results 1 - 2 of 2) sorted by null

  /external/harfbuzz_ng/src/hb-ucdn/
ucdn.c 24 unsigned char combining; member in struct:__anon18671
175 return get_ucd_record(code)->combining;
  /frameworks/base/core/java/android/view/
KeyCharacterMap.java 186 * Maps Unicode combining diacritical to display-form dead key.
235 private static void addCombining(int combining, int accent) {
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); local
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 the dead key producing accen
495 int combining = sAccentToCombining.get(accent); local
    [all...]

Completed in 37 milliseconds