Home
last modified time | relevance | path

Searched refs:mInputListener (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/inputmethods/LeanbackIME/src/com/android/inputmethod/leanback/
H A DLeanbackKeyboardController.java138 private InputListener mInputListener; field in LeanbackKeyboardController
163 mInputListener = listener; in LeanbackKeyboardController()
345 mInputListener.onEntry(InputListener.ENTRY_TYPE_ACTION, 0, null); in commitKey()
348 mInputListener.onEntry(InputListener.ENTRY_TYPE_SUGGESTION, 0, in commitKey()
386 mInputListener.onEntry(InputListener.ENTRY_TYPE_LEFT, 0, null); in handleCommitKeyboardKey()
389 mInputListener.onEntry(InputListener.ENTRY_TYPE_RIGHT, 0, null); in handleCommitKeyboardKey()
392 mInputListener.onEntry(InputListener.ENTRY_TYPE_BACKSPACE, 0, null); in handleCommitKeyboardKey()
395 mInputListener.onEntry(InputListener.ENTRY_TYPE_STRING, code, " "); in handleCommitKeyboardKey()
556 mInputListener.onEntry(InputListener.ENTRY_TYPE_DISMISS, 0, null); in handleKeyUpEvent()
573 mInputListener.onEntry(InputListener.ENTRY_TYPE_VOICE, 0, result); in onVoiceResult()
[all …]
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
H A DInputHalServiceTest.java69 @Mock InputHalService.InputListener mInputListener; field in InputHalServiceTest
100 mInputHalService.setInputListener(mInputListener); in ignoresSetListener_beforeKeyInputSupported()
105 verify(mInputListener, never()).onKeyEvent(any(), anyInt()); in ignoresSetListener_beforeKeyInputSupported()
222 }).when(mInputListener).onKeyEvent(any(), in dispatchesInputEvent_multiple_toListener_clusterDisplay()
447 }).when(mInputListener).onCustomInputEvent(any()); in dispatchesCustomInputEvent_mainDisplay()
473 }).when(mInputListener).onCustomInputEvent(any()); in dispatchesCustomInputEvent_clusterDisplay()
494 mInputHalService.setInputListener(mInputListener); in subscribeListener()
501 reset(mInputListener); in dispatchSingleEvent()
505 reset(mInputListener); in dispatchSingleEvent()
512 reset(mInputListener); in dispatchSingleEventWithIndents()
[all …]
/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
H A DBluetoothInputDeviceConnector.java85 inputManager.registerInputDeviceListener(mInputListener, mHandler); in registerInputMethodMonitor()
97 private InputManager.InputDeviceListener mInputListener = field in BluetoothInputDeviceConnector
126 inputManager.unregisterInputDeviceListener(mInputListener); in unregisterInputMethodMonitor()
/aosp12/packages/inputmethods/LeanbackIME/src/com/android/inputmethod/leanback/service/
H A DLeanbackImeService.java61 private LeanbackKeyboardController.InputListener mInputListener field in LeanbackImeService
108 mKeyboardController = new LeanbackKeyboardController(this, mInputListener); in onInitializeInterface()