Searched refs:mCode (Results 1 - 14 of 14) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DMoreKeysDetector.java61 allCodes[0] = keys.get(nearestIndex).mCode;
H A DPointerTracker.java231 final boolean ignoreModifierKey = mIgnoreModifierKey && isModifierCode(key.mCode);
233 Log.d(TAG, "onPress : " + keyCodePrintable(key.mCode) + " sliding=" + withSliding
238 mListener.onPress(key.mCode, withSliding);
247 // primaryCode is different from {@link Key#mCode}.
249 final boolean ignoreModifierKey = mIgnoreModifierKey && isModifierCode(key.mCode);
268 // primaryCode is different from {@link Key#mCode}.
270 final boolean ignoreModifierKey = mIgnoreModifierKey && isModifierCode(key.mCode);
313 return key == null ? false : isModifierCode(key.mCode);
326 return key != null && key.mCode == Keyboard.CODE_SHIFT;
355 final int code = key.mCode;
[all...]
H A DKeyDetector.java174 final int code = keys.get(index).mCode;
216 + (primaryIndex == NOT_A_KEY ? "none" : keys.get(primaryIndex).mCode)
H A DKey.java48 public final int mCode; field in class:Key
191 mCode = code;
286 mCode = getRtlParenthesisCode(firstChar, params.mIsRtlKeyboard);
288 mCode = code;
290 mCode = Keyboard.CODE_DUMMY;
H A DProximityInfo.java98 keys.get(gridNeighborKeyIndexes[i][j]).mCode;
113 keyCharCodes[i] = key.mCode;
H A DLatinKeyboard.java115 switch (key.mCode) {
H A DLatinKeyboardView.java395 final int primaryCode = parentKey.mCode;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
H A DAccessibleKeyboardViewProxy.java167 mListener.onHoverEnter(key.mCode);
170 mListener.onHoverExit(key.mCode);
H A DKeyCodeDescriptionMapper.java130 if (key.mCode == Keyboard.CODE_SWITCH_ALPHA_SYMBOL) {
148 } else if (key.mCode != Keyboard.CODE_DUMMY) {
193 return key.mCode;
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventFragment.java641 private int mCode = -1; field in class:EditEventFragment.Done
644 mCode = code;
657 if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null
679 } else if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null && isEmptyNewEvent()) {
683 if ((mCode & Utils.DONE_DELETE) != 0 && mOriginalModel != null
704 if ((mCode & Utils.DONE_EXIT) != 0) {
707 if ((mCode & Utils.DONE_SAVE) != 0) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardParams.java141 if (key.mCode == Keyboard.CODE_SHIFT) {
H A DKeyboardBuilder.java500 TAG_KEY, (key.isEnabled() ? "" : " disabled"), key.mLabel, key.mCode,
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DExpandableDictionary.java54 char mCode; field in class:ExpandableDictionary.Node
170 if (node.mCode == c) {
177 childNode.mCode = c;
288 final char c = node.mCode;
415 if (node.mCode == c) {
422 childNode.mCode = c;
503 mLookedUpString[index] = node.mCode;
529 if (node.mCode == currentChar) {
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
H A DSuggestHelper.java70 if (key.mCode == c) {

Completed in 198 milliseconds