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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyDetector.java 29 public static final int NOT_A_KEY = -1;
125 Arrays.fill(mIndices, NOT_A_KEY);
164 if (indices[0] == NOT_A_KEY) {
172 if (index == NOT_A_KEY)
199 int primaryIndex = NOT_A_KEY;
216 + (primaryIndex == NOT_A_KEY ? "none" : keys.get(primaryIndex).mCode)
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 131 private static final int NOT_A_KEY = -1;
136 private int mCurrentKeyIndex = NOT_A_KEY;
198 private int mCurrentKey = NOT_A_KEY;
199 private int mDownKey = NOT_A_KEY;
206 private int mRepeatKeyIndex = NOT_A_KEY;
460 showPreview(NOT_A_KEY);
754 int primaryIndex = NOT_A_KEY;
755 int closestKey = NOT_A_KEY;
797 if (primaryIndex == NOT_A_KEY) {
804 if (index != NOT_A_KEY && index < mKeys.length)
    [all...]

Completed in 547 milliseconds