Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
DNotificationShadeWindowViewControllerTest.kt434 whenever(statusBarKeyguardViewManager.shouldInterceptTouchEvent(DOWN_EVENT)) in shouldInterceptTouchEvent_statusBarKeyguardViewManagerShouldIntercept()
438 val shouldIntercept = interactionEventHandler.shouldInterceptTouchEvent(DOWN_EVENT) in shouldInterceptTouchEvent_statusBarKeyguardViewManagerShouldIntercept()
447 whenever(statusBarKeyguardViewManager.shouldInterceptTouchEvent(DOWN_EVENT)) in shouldInterceptTouchEvent_dozing_touchInLockIconArea_touchNotIntercepted()
458 assertThat(interactionEventHandler.shouldInterceptTouchEvent(DOWN_EVENT)).isFalse() in shouldInterceptTouchEvent_dozing_touchInLockIconArea_touchNotIntercepted()
466 whenever(statusBarKeyguardViewManager.shouldInterceptTouchEvent(DOWN_EVENT)) in shouldInterceptTouchEvent_dozing_touchNotInLockIconArea_touchIntercepted()
477 assertThat(interactionEventHandler.shouldInterceptTouchEvent(DOWN_EVENT)).isTrue() in shouldInterceptTouchEvent_dozing_touchNotInLockIconArea_touchIntercepted()
485 whenever(statusBarKeyguardViewManager.shouldInterceptTouchEvent(DOWN_EVENT)) in shouldInterceptTouchEvent_dozing_touchInStatusBar_touchIntercepted()
496 assertThat(interactionEventHandler.shouldInterceptTouchEvent(DOWN_EVENT)).isTrue() in shouldInterceptTouchEvent_dozing_touchInStatusBar_touchIntercepted()
506 whenever(statusBarKeyguardViewManager.shouldInterceptTouchEvent(DOWN_EVENT)) in shouldInterceptTouchEvent_dozingAndPulsing_touchIntercepted()
523 assertThat(interactionEventHandler.shouldInterceptTouchEvent(DOWN_EVENT)).isTrue() in shouldInterceptTouchEvent_dozingAndPulsing_touchIntercepted()
DNotificationShadeWindowViewTest.kt229 whenever(statusBarKeyguardViewManager.shouldInterceptTouchEvent(any())).thenReturn(true) in testInterceptTouchWhenShowingAltAuth()
233 assertThat(interactionEventHandler.shouldInterceptTouchEvent(mock())).isTrue() in testInterceptTouchWhenShowingAltAuth()
243 whenever(statusBarKeyguardViewManager.shouldInterceptTouchEvent(any())) in testNoInterceptTouch()
248 assertThat(interactionEventHandler.shouldInterceptTouchEvent(mock())).isFalse() in testNoInterceptTouch()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarKeyguardViewManagerTest.java804 assertFalse(mStatusBarKeyguardViewManager.shouldInterceptTouchEvent( in onInterceptTouch_alternateBouncerViewFlagEnabled()
889 assertFalse(mStatusBarKeyguardViewManager.shouldInterceptTouchEvent( in shouldInterceptTouch_alternateBouncerNotVisible()
892 assertFalse(mStatusBarKeyguardViewManager.shouldInterceptTouchEvent( in shouldInterceptTouch_alternateBouncerNotVisible()
895 assertFalse(mStatusBarKeyguardViewManager.shouldInterceptTouchEvent( in shouldInterceptTouch_alternateBouncerNotVisible()
906 assertTrue(mStatusBarKeyguardViewManager.shouldInterceptTouchEvent( in shouldInterceptTouch_alternateBouncerVisible()
909 assertTrue(mStatusBarKeyguardViewManager.shouldInterceptTouchEvent( in shouldInterceptTouch_alternateBouncerVisible()
912 assertTrue(mStatusBarKeyguardViewManager.shouldInterceptTouchEvent( in shouldInterceptTouch_alternateBouncerVisible()
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DNotificationShadeWindowView.java138 boolean intercept = mInteractionEventHandler.shouldInterceptTouchEvent(ev); in onInterceptTouchEvent()
307 boolean shouldInterceptTouchEvent(MotionEvent ev); in shouldInterceptTouchEvent() method
DNotificationShadeWindowViewController.java449 public boolean shouldInterceptTouchEvent(MotionEvent ev) { in setupExpandedStatusBar()
477 if (mStatusBarKeyguardViewManager.shouldInterceptTouchEvent(ev)) { in setupExpandedStatusBar()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarKeyguardViewManager.java1699 if (shouldInterceptTouchEvent(event) in dispatchTouchEvent()
1703 return shouldInterceptTouchEvent(event); in dispatchTouchEvent()
1710 public boolean shouldInterceptTouchEvent(MotionEvent event) { in shouldInterceptTouchEvent() method in StatusBarKeyguardViewManager
1726 boolean handleTouch = shouldInterceptTouchEvent(event); in onTouch()
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
DPrintContentView.java197 return mDragger.shouldInterceptTouchEvent(event) in onInterceptTouchEvent()