Home
last modified time | relevance | path

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

/packages/inputmethods/LeanbackIME/src/com/android/inputmethod/leanback/
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()
399 mInputListener.onEntry(InputListener.ENTRY_TYPE_STRING, code, label); in handleCommitKeyboardKey()
407 mInputListener.onEntry(InputListener.ENTRY_TYPE_STRING, code, label); in handleCommitKeyboardKey()
[all …]
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DInputHalServiceTest.java63 @Mock InputHalService.InputListener mInputListener; field in InputHalServiceTest
91 mInputHalService.setInputListener(mInputListener); in ignoresSetListener_beforeKeyInputSupported()
95 verify(mInputListener, never()).onKeyEvent(any(), anyInt()); in ignoresSetListener_beforeKeyInputSupported()
132 }).when(mInputListener).onKeyEvent(any(), eq(DISPLAY)); in dispatchesInputEvent_multiple_toListener()
237 mInputHalService.setInputListener(mInputListener); in subscribeListener()
256 reset(mInputListener); in dispatchSingleEvent()
258 verify(mInputListener).onKeyEvent(captor.capture(), eq(DISPLAY)); in dispatchSingleEvent()
259 reset(mInputListener); in dispatchSingleEvent()
276 reset(mInputListener); in dispatchSingleEventWithIndents()
279 verify(mInputListener).onKeyEvent(captor.capture(), eq(DISPLAY)); in dispatchSingleEventWithIndents()
[all …]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
DBluetoothInputDeviceConnector.java85 inputManager.registerInputDeviceListener(mInputListener, mHandler); in registerInputMethodMonitor()
97 private InputManager.InputDeviceListener mInputListener = field in BluetoothInputDeviceConnector
126 inputManager.unregisterInputDeviceListener(mInputListener); in unregisterInputMethodMonitor()
/packages/inputmethods/LeanbackIME/src/com/android/inputmethod/leanback/service/
DLeanbackImeService.java61 private LeanbackKeyboardController.InputListener mInputListener field in LeanbackImeService
108 mKeyboardController = new LeanbackKeyboardController(this, mInputListener); in onInitializeInterface()