HomeSort by relevance Sort by last modified time
    Searched full:replacingkeys (Results 1 - 1 of 1) sorted by null

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKeyboardBuilder.java 63 ExpectedKey[] replacingKeys(final ExpectedKey oldKey);
69 final ExpectedKey[] replacingKeys) {
71 if (replacingKeys.length == 1) {
72 keys[columnIndex] = replacingKeys[0];
75 final int newLength = keys.length - 1 + replacingKeys.length;
78 System.arraycopy(keys, columnIndex + 1, newKeys, columnIndex + replacingKeys.length,
81 System.arraycopy(replacingKeys, 0, newKeys, columnIndex, replacingKeys.length);
98 final ExpectedKey[] replacingKeys = job.replacingKeys(currentKey)
    [all...]

Completed in 110 milliseconds