Home | History | Annotate | Download | only in keyboard

Lines Matching refs:primaryCode

264     // Note that we need primaryCode argument because the keyboard may in shifted state and the
265 // primaryCode is different from {@link Key#mCode}.
266 private void callListenerOnCodeInput(Key key, int primaryCode, int x, int y) {
269 final int code = altersCode ? key.mAltCode : primaryCode;
293 // Note that we need primaryCode argument because the keyboard may in shifted state and the
294 // primaryCode is different from {@link Key#mCode}.
295 private void callListenerOnRelease(Key key, int primaryCode, boolean withSliding) {
298 Log.d(TAG, "onRelease : " + Keyboard.printableCode(primaryCode)
303 ResearchLogger.pointerTracker_callListenerOnRelease(key, primaryCode, withSliding,
310 mListener.onReleaseKey(primaryCode, withSliding);