/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/ |
D | HardwareKeyboardEventDecoder.java | 49 final boolean isKeyRepeat = (0 != keyEvent.getRepeatCount()); in decodeHardwareKey() 52 null /* next */, isKeyRepeat); in decodeHardwareKey() 69 Constants.CODE_SHIFT_ENTER, null /* next */, isKeyRepeat); in decodeHardwareKey() 72 null /* next */, isKeyRepeat); in decodeHardwareKey() 77 isKeyRepeat); in decodeHardwareKey()
|
D | Event.java | 143 final int x, final int y, final boolean isKeyRepeat) { in createSoftwareKeypressEvent() argument 145 null /* suggestedWordInfo */, isKeyRepeat ? FLAG_REPEAT : FLAG_NONE, null); in createSoftwareKeypressEvent() 150 final Event next, final boolean isKeyRepeat) { in createHardwareKeypressEvent() argument 153 null /* suggestedWordInfo */, isKeyRepeat ? FLAG_REPEAT : FLAG_NONE, next); in createHardwareKeypressEvent() 282 public boolean isKeyRepeat() { in isKeyRepeat() method in Event
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | KeyboardActionListener.java | 59 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat); in onCodeInput() argument 112 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat) {} in onCodeInput() argument
|
D | PointerTracker.java | 277 final int y, final long eventTime, final boolean isKeyRepeat) { in callListenerOnCodeInput() argument 298 sListener.onCodeInput(code, x, y, isKeyRepeat); in callListenerOnCodeInput() 301 Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, isKeyRepeat); in callListenerOnCodeInput()
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
D | InputTestsBase.java | 280 protected void typeInternal(final int codePoint, final boolean isKeyRepeat) { in typeInternal() argument 292 Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, isKeyRepeat); in typeInternal() 296 event = LatinIME.createSoftwareKeypressEvent(codePoint, x, y, isKeyRepeat); in typeInternal()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | LatinIME.java | 1398 final boolean isKeyRepeat) { in onCodeInput() argument 1409 keyX, keyY, isKeyRepeat); in onCodeInput() 1432 final int keyY, final boolean isKeyRepeat) { in createSoftwareKeypressEvent() argument 1442 return Event.createSoftwareKeypressEvent(codePoint, keyCode, keyX, keyY, isKeyRepeat); in createSoftwareKeypressEvent()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/ |
D | SuggestionStripView.java | 63 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat); in onCodeInput() argument
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/ |
D | InputLogic.java | 697 event.mKeyCode, event.mX, event.mY, event.isKeyRepeat()); in handleFunctionalEvent() 1003 event.isKeyRepeat() && mConnection.getExpectedSelectionStart() > 0 in handleBackspaceEvent()
|