Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/dreams/complication/
H A DHideComplicationTouchHandlerTest.java177 final ArgumentCaptor<InputChannelCompat.InputEventListener> inputEventListenerCaptor = in testSessionEndWithTouchInInset() local
179 verify(mSession).registerInputListener(inputEventListenerCaptor.capture()); in testSessionEndWithTouchInInset()
189 inputEventListenerCaptor.getValue().onInputEvent(mMotionEvent); in testSessionEndWithTouchInInset()
225 final ArgumentCaptor<InputChannelCompat.InputEventListener> inputEventListenerCaptor = in testSessionLifecycle() local
227 verify(mSession).registerInputListener(inputEventListenerCaptor.capture()); in testSessionLifecycle()
239 inputEventListenerCaptor.getValue().onInputEvent(mMotionEvent); in testSessionLifecycle()
252 inputEventListenerCaptor.getValue().onInputEvent(mMotionEvent); in testSessionLifecycle()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/dreams/touch/
H A DBouncerSwipeTouchHandlerTest.java510 ArgumentCaptor<InputChannelCompat.InputEventListener> inputEventListenerCaptor = in swipeToPosition() local
512 verify(mTouchSession).registerInputListener(inputEventListenerCaptor.capture()); in swipeToPosition()
529 inputEventListenerCaptor.getValue().onInputEvent(upEvent); in swipeToPosition()
H A DDreamOverlayTouchMonitorTest.java117 final ArgumentCaptor<InputChannelCompat.InputEventListener> inputEventListenerCaptor = in Environment() local
121 verify(mInputFactory).create(any(), inputEventListenerCaptor.capture(), in Environment()
124 mEventListener = inputEventListenerCaptor.getValue(); in Environment()