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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboardLayout.java109 public static KeyboardLayout newKeyboardLayout(@Nonnull final List<Key> sortedKeys, argument
113 for (final Key key : sortedKeys) {
H A DProximityInfo.java63 @Nonnull final List<Key> sortedKeys,
74 mSortedKeys = sortedKeys;
148 final List<Key> sortedKeys = mSortedKeys;
149 final int keyCount = getProximityInfoKeysCount(sortedKeys);
159 for (int infoIndex = 0, keyIndex = 0; keyIndex < sortedKeys.size(); keyIndex++) {
160 final Key key = sortedKeys.get(keyIndex);
183 for (int infoIndex = 0, keyIndex = 0; keyIndex < sortedKeys.size(); keyIndex++) {
184 final Key key = sortedKeys.get(keyIndex);
61 ProximityInfo(final int gridWidth, final int gridHeight, final int minWidth, final int height, final int mostCommonKeyWidth, final int mostCommonKeyHeight, @Nonnull final List<Key> sortedKeys, @Nonnull final TouchPositionCorrection touchPositionCorrection) argument
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
H A DActualKeyboardBuilder.java51 * @param sortedKeys keys list of the actual keyboard that is sorted from top-left to
55 public static Key[][] buildKeyboard(final List<Key> sortedKeys) { argument
57 final ArrayList<Key> filteredSortedKeys = filterOutSpacer(sortedKeys);

Completed in 65 milliseconds