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 228 private int[] mDistances = new int[MAX_NEARBY_KEYS];
760 java.util.Arrays.fill(mDistances, Integer.MAX_VALUE);
784 for (int j = 0; j < mDistances.length; j++) {
785 if (mDistances[j] > dist) {
787 System.arraycopy(mDistances, j, mDistances, j + nCodes,
788 mDistances.length - j - nCodes);
793 mDistances[j + c] = dist;
    [all...]

Completed in 881 milliseconds