Home
last modified time | relevance | path

Searched refs:inputEventListenerCaptor (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/dreams/complication/
DHideComplicationTouchHandlerTest.java184 final ArgumentCaptor<InputChannelCompat.InputEventListener> inputEventListenerCaptor = in testSessionEndWithTouchInInset() local
186 verify(mSession).registerInputListener(inputEventListenerCaptor.capture()); in testSessionEndWithTouchInInset()
196 inputEventListenerCaptor.getValue().onInputEvent(mMotionEvent); in testSessionEndWithTouchInInset()
233 final ArgumentCaptor<InputChannelCompat.InputEventListener> inputEventListenerCaptor = in testSessionLifecycle() local
235 verify(mSession).registerInputListener(inputEventListenerCaptor.capture()); in testSessionLifecycle()
247 inputEventListenerCaptor.getValue().onInputEvent(mMotionEvent); in testSessionLifecycle()
260 inputEventListenerCaptor.getValue().onInputEvent(mMotionEvent); in testSessionLifecycle()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/ambient/touch/
DBouncerSwipeTouchHandlerTest.java560 ArgumentCaptor<InputChannelCompat.InputEventListener> inputEventListenerCaptor = in swipeToPosition() local
562 verify(mTouchSession).registerInputListener(inputEventListenerCaptor.capture()); in swipeToPosition()
580 inputEventListenerCaptor.getValue().onInputEvent(upEvent); in swipeToPosition()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/ambient/touch/
DTouchMonitorTest.java167 final ArgumentCaptor<InputChannelCompat.InputEventListener> inputEventListenerCaptor = in Environment() local
171 verify(mInputFactory).create(any(), inputEventListenerCaptor.capture(), in Environment()
174 mEventListener = inputEventListenerCaptor.getValue(); in Environment()