Searched refs:isKeyRepeat (Results 1 - 8 of 8) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
H A DHardwareKeyboardEventDecoder.java49 final boolean isKeyRepeat = (0 != keyEvent.getRepeatCount());
52 null /* next */, isKeyRepeat);
69 Constants.CODE_SHIFT_ENTER, null /* next */, isKeyRepeat);
72 null /* next */, isKeyRepeat);
77 isKeyRepeat);
H A DEvent.java143 final int x, final int y, final boolean isKeyRepeat) {
145 null /* suggestedWordInfo */, isKeyRepeat ? FLAG_REPEAT : FLAG_NONE, null);
150 final Event next, final boolean isKeyRepeat) {
153 null /* suggestedWordInfo */, isKeyRepeat ? FLAG_REPEAT : FLAG_NONE, next);
282 public boolean isKeyRepeat() { method in class:Event
142 createSoftwareKeypressEvent(final int codePoint, final int keyCode, final int x, final int y, final boolean isKeyRepeat) argument
149 createHardwareKeypressEvent(final int codePoint, final int keyCode, final Event next, final boolean isKeyRepeat) argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboardActionListener.java56 * @param isKeyRepeat true if this is a key repeat, false otherwise
59 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat); argument
112 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat) {} argument
H A DPointerTracker.java277 final int y, final long eventTime, final boolean isKeyRepeat) {
298 sListener.onCodeInput(code, x, y, isKeyRepeat);
301 Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, isKeyRepeat);
1030 Constants.NOT_A_COORDINATE, false /* isKeyRepeat */);
1156 callListenerOnCodeInput(key, code, x, y, eventTime, false /* isKeyRepeat */);
1182 true /* isKeyRepeat */);
276 callListenerOnCodeInput(final Key key, final int primaryCode, final int x, final int y, final long eventTime, final boolean isKeyRepeat) argument
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
H A DInputTestsBase.java280 protected void typeInternal(final int codePoint, final boolean isKeyRepeat) { argument
292 Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, isKeyRepeat);
296 event = LatinIME.createSoftwareKeypressEvent(codePoint, x, y, isKeyRepeat);
304 typeInternal(codePoint, false /* isKeyRepeat */);
308 typeInternal(codePoint, true /* isKeyRepeat */);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java1318 final boolean isKeyRepeat) {
1329 keyX, keyY, isKeyRepeat);
1352 final int keyY, final boolean isKeyRepeat) {
1362 return Event.createSoftwareKeypressEvent(codePoint, keyCode, keyX, keyY, isKeyRepeat);
1317 onCodeInput(final int codePoint, final int x, final int y, final boolean isKeyRepeat) argument
1351 createSoftwareKeypressEvent(final int keyCodeOrCodePoint, final int keyX, final int keyY, final boolean isKeyRepeat) argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
H A DSuggestionStripView.java63 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat); argument
456 false /* isKeyRepeat */);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
H A DInputLogic.java697 event.mKeyCode, event.mX, event.mY, event.isKeyRepeat());
1003 event.isKeyRepeat() && mConnection.getExpectedSelectionStart() > 0

Completed in 214 milliseconds