Home
last modified time | relevance | path

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

/cts/tests/framework/base/windowmanager/app/src/android/server/wm/app/
DRenderService.java46 private boolean onTouch(View v, MotionEvent event) { in onTouch() method in RenderService
71 embeddedView.setOnTouchListener(this::onTouch); in getSurfaceControlViewHost()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/cube/
DCubePresentation.java54 public boolean onTouch(View view, MotionEvent event) { in onCreate()
/cts/tests/tests/view/src/android/view/cts/
DGestureDetectorCtsActivity.java93 public boolean onTouch(View v, MotionEvent event) { in onTouch() method in GestureDetectorCtsActivity.MockOnTouchListener
DViewTest.java3166 doReturn(true).when(listener).onTouch(any(), any()); in testDispatchTouchEvent()
3170 verify(listener, times(1)).onTouch(mockView1, event); in testDispatchTouchEvent()
3225 public boolean onTouch(View v, MotionEvent event) { in testOnTouchListener() method in ViewTest.TestTouchListener
4406 doReturn(true).when(touchListener).onTouch(any(), any()); in testFilterTouchesWhenObscured()
4427 verify(touchListener, times(1)).onTouch(view, unobscuredTouch); in testFilterTouchesWhenObscured()
4430 verify(touchListener, times(1)).onTouch(view, obscuredTouch); in testFilterTouchesWhenObscured()
4438 verify(touchListener, times(1)).onTouch(view, unobscuredTouch); in testFilterTouchesWhenObscured()
4449 verify(touchListener, times(1)).onTouch(view, unobscuredTouch); in testFilterTouchesWhenObscured()
4452 verify(touchListener, times(1)).onTouch(view, obscuredTouch); in testFilterTouchesWhenObscured()
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
DEventCapturingTouchListener.java53 public boolean onTouch(View view, MotionEvent motionEvent) { in onTouch() method in EventCapturingTouchListener
/cts/hostsidetests/securitybulletin/test-apps/CVE-2021-0523/src/android/security/cts/CVE_2021_0523/
DPocService.java103 public boolean onTouch(View view, MotionEvent event) { in onTouch() method in PocService.FloatingOnTouchListener
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DAbstractTestListActivity.java139 public boolean onTouch(View v, MotionEvent event) { in setOnTouchListenerToListView()
/cts/tests/framework/base/windowmanager/dndsourceapp/src/android/server/wm/dndsourceapp/
DDragSource.java94 public boolean onTouch(View v, MotionEvent event) { in setUpDragSource()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/
DProjectionActivity.java101 public boolean onTouch(View view, MotionEvent event) { in setContentViewAndInfoResources()
/cts/tests/tests/systemui/src/android/systemui/cts/
DWindowInsetsPresenterDrawable.java183 public boolean onTouch(View v, MotionEvent event) { in onTouch() method in WindowInsetsPresenterDrawable
/cts/tests/tests/security/src/android/security/cts/
DMotionEventTest.java216 public boolean onTouch(View v, MotionEvent e) { in onTouch() method in MotionEventTest.OnTouchListener
DFlagSlipperyTest.kt289 override fun onTouch(v: View, e: MotionEvent): Boolean { in onTouch() method in FlagSlipperyTest
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DStepCounterTestActivity.java90 public boolean onTouch(View v, MotionEvent event) { in activitySetUp()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
DAudioTap2ToneActivity.java160 public boolean onTouch(View view, MotionEvent event) { in onCreate()
/cts/tests/tests/widget/src/android/widget/cts/
DPopupWindowTest.java1593 when(onTouchListener.onTouch(any(View.class), any(MotionEvent.class))).thenReturn(true); in testSetTouchInterceptor()
1618 verify(onTouchListener, times(1)).onTouch(any(View.class), any(MotionEvent.class)); in testSetTouchInterceptor()
1624 verify(onTouchListener, times(2)).onTouch(any(View.class), any(MotionEvent.class)); in testSetTouchInterceptor()
1631 verify(onTouchListener, times(2)).onTouch(any(View.class), any(MotionEvent.class)); in testSetTouchInterceptor()
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
DAccessibilityGestureDispatchTest.java598 public boolean onTouch(View view, MotionEvent motionEvent) { in onTouch() method in AccessibilityGestureDispatchTest.MyTouchListener
DAccessibilityEndToEndTest.java824 verify(listener, timeout(DEFAULT_TIMEOUT_MS).atLeastOnce()).onTouch(any(View.class), in testA11yActionTriggerMotionEventActionOutside()