Home
last modified time | relevance | path

Searched refs:mMotionEvent (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/apps/Car/libs/car-qc-lib/tests/unit/src/com/android/car/qc/view/
H A DQCSeekBarViewTest.java45 private MotionEvent mMotionEvent; field in QCSeekBarViewTest
50 when(mMotionEvent.getAction()).thenReturn(MotionEvent.ACTION_UP); in setUp()
55 assertThat(mView.onTouchEvent(mMotionEvent)).isTrue(); in enabled_standardTouchEvent()
62 assertThat(mView.onTouchEvent(mMotionEvent)).isFalse(); in disabled_standardTouchEvent()
70 assertThat(mView.onTouchEvent(mMotionEvent)).isTrue(); in clickableWhileDisabled_customTouchEvent()
80 when(mMotionEvent.getAction()).thenReturn(MotionEvent.ACTION_DOWN); in clickableWhileDisabled_actionDown_doesNotTriggerDisabledClickListener()
82 assertThat(mView.onTouchEvent(mMotionEvent)).isTrue(); in clickableWhileDisabled_actionDown_doesNotTriggerDisabledClickListener()
94 assertThat(mView.onTouchEvent(mMotionEvent)).isTrue(); in clickableWhileDisabled_actionUp_triggersDisabledClickListener()
/aosp12/frameworks/native/include/input/
H A DInput.h967 virtual MotionEvent* createMotionEvent() override { return &mMotionEvent; } in createMotionEvent()
974 MotionEvent mMotionEvent; variable