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

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java 230 private int[] mDistances = new int[MAX_NEARBY_KEYS];
804 java.util.Arrays.fill(mDistances, Integer.MAX_VALUE);
827 for (int j = 0; j < mDistances.length; j++) {
828 if (mDistances[j] > dist) {
829 System.arraycopy(mDistances, j, mDistances, j + nCodes,
830 mDistances.length - j - nCodes);
835 mDistances[j + c] = dist;
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 229 private int[] mDistances = new int[MAX_NEARBY_KEYS];
761 java.util.Arrays.fill(mDistances, Integer.MAX_VALUE);
785 for (int j = 0; j < mDistances.length; j++) {
786 if (mDistances[j] > dist) {
788 System.arraycopy(mDistances, j, mDistances, j + nCodes,
789 mDistances.length - j - nCodes);
794 mDistances[j + c] = dist;
    [all...]

Completed in 42 milliseconds