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);
78 isKeyRepeat);
H A DEvent.java137 final int x, final int y, final boolean isKeyRepeat) {
139 null /* suggestedWordInfo */, isKeyRepeat ? FLAG_REPEAT : FLAG_NONE, null);
143 final Event next, final boolean isKeyRepeat) {
146 null /* suggestedWordInfo */, isKeyRepeat ? FLAG_REPEAT : FLAG_NONE, next);
254 public boolean isKeyRepeat() { method in class:Event
136 createSoftwareKeypressEvent(final int codePoint, final int keyCode, final int x, final int y, final boolean isKeyRepeat) argument
142 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.java325 final int y, final long eventTime, final boolean isKeyRepeat) {
346 sListener.onCodeInput(code, x, y, isKeyRepeat);
349 Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, isKeyRepeat);
1190 callListenerOnCodeInput(key, code, x, y, eventTime, false /* isKeyRepeat */);
1216 true /* isKeyRepeat */);
324 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.java257 protected void typeInternal(final int codePoint, final boolean isKeyRepeat) { argument
268 isKeyRepeat);
272 mLatinIME.onCodeInput(codePoint, x, y, isKeyRepeat);
279 typeInternal(codePoint, false /* isKeyRepeat */);
283 typeInternal(codePoint, true /* isKeyRepeat */);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java1334 final boolean isKeyRepeat) {
1360 final Event event = createSoftwareKeypressEvent(codeToSend, keyX, keyY, isKeyRepeat);
1373 final int keyY, final boolean isKeyRepeat) {
1383 return Event.createSoftwareKeypressEvent(codePoint, keyCode, keyX, keyY, isKeyRepeat);
1333 onCodeInput(final int codePoint, final int x, final int y, final boolean isKeyRepeat) argument
1372 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.java64 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat); argument
484 false /* isKeyRepeat */);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
H A DInputLogic.java723 event.mKeyCode, event.mX, event.mY, event.isKeyRepeat());
1027 event.isKeyRepeat() && mConnection.getExpectedSelectionStart() > 0

Completed in 266 milliseconds