Home
last modified time | relevance | path

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

/cts/tests/framework/base/windowmanager/app/src/android/server/wm/app/
DRenderService.java48 private boolean onTouch(View v, MotionEvent event) { in onTouch() method in RenderService
73 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.java3162 doReturn(true).when(listener).onTouch(any(), any()); in testDispatchTouchEvent()
3166 verify(listener, times(1)).onTouch(mockView1, event); in testDispatchTouchEvent()
3221 public boolean onTouch(View v, MotionEvent event) { in testOnTouchListener() method in ViewTest.TestTouchListener
4402 doReturn(true).when(touchListener).onTouch(any(), any()); in testFilterTouchesWhenObscured()
4423 verify(touchListener, times(1)).onTouch(view, unobscuredTouch); in testFilterTouchesWhenObscured()
4426 verify(touchListener, times(1)).onTouch(view, obscuredTouch); in testFilterTouchesWhenObscured()
4434 verify(touchListener, times(1)).onTouch(view, unobscuredTouch); in testFilterTouchesWhenObscured()
4445 verify(touchListener, times(1)).onTouch(view, unobscuredTouch); in testFilterTouchesWhenObscured()
4448 verify(touchListener, times(1)).onTouch(view, obscuredTouch); in testFilterTouchesWhenObscured()
/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/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
DEventCapturingTouchListener.java53 public boolean onTouch(View view, MotionEvent motionEvent) { in onTouch() method in EventCapturingTouchListener
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DAbstractTestListActivity.java131 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
/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()