Home
last modified time | relevance | path

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

/cts/tests/tests/view/src/android/view/cts/
DMotionEventTest.java81 private MotionEvent mMotionEvent1; field in MotionEventTest
120 mMotionEvent1 = MotionEvent.obtain(mDownTime, mEventTime, in setup()
129 if (null != mMotionEvent1) { in teardown()
130 mMotionEvent1.recycle(); in teardown()
142 mMotionEvent1 = MotionEvent.obtain(mDownTime, mEventTime, in testObtainBasic()
144 assertNotNull(mMotionEvent1); in testObtainBasic()
145 assertEquals(mDownTime, mMotionEvent1.getDownTime()); in testObtainBasic()
146 assertEquals(mEventTime, mMotionEvent1.getEventTime()); in testObtainBasic()
147 assertEquals(mEventTimeNano, mMotionEvent1.getEventTimeNanos()); in testObtainBasic()
148 assertEquals(MotionEvent.ACTION_DOWN, mMotionEvent1.getAction()); in testObtainBasic()
[all …]