Home | History | Annotate | Download | only in inputmethodservice

Lines Matching refs:primaryCode

79          * @param primaryCode the unicode of the key being pressed. If the touch is not on a valid
82 void onPress(int primaryCode);
87 * @param primaryCode the code of the key that was released
89 void onRelease(int primaryCode);
93 * @param primaryCode this is the key that was pressed
101 void onKey(int primaryCode, int[] keyCodes);
1099 public void onKey(int primaryCode, int[] keyCodes) {
1100 mKeyboardActionListener.onKey(primaryCode, keyCodes);
1113 public void onPress(int primaryCode) {
1114 mKeyboardActionListener.onPress(primaryCode);
1116 public void onRelease(int primaryCode) {
1117 mKeyboardActionListener.onRelease(primaryCode);