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

/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
H A DConstants.java284 public static String printableCodes(@Nonnull final int[] codes) { argument
287 for (final int code : codes) {
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DKeyboard.java224 * All the key codes (unicode or custom code) that this key could generate, zero'th
227 public int[] codes; field in class:Keyboard.Key
350 codes = new int[] { codesValue.data };
352 codes = parseCSV(codesValue.string.toString());
381 if (codes == null && !TextUtils.isEmpty(label)) {
382 codes = new int[] { label.charAt(0) };
589 key.codes = new int[] { c };
786 if (key.codes[0] == KEYCODE_SHIFT) {
790 } else if (key.codes[0] == KEYCODE_ALT) {

Completed in 339 milliseconds