Searched refs:shouldQuickSettingsIntercept (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
D | QuickSettingsController.kt | 28 fun shouldQuickSettingsIntercept(x: Float, y: Float, yDiff: Float): Boolean method
|
D | QuickSettingsControllerSceneImpl.kt | 39 override fun shouldQuickSettingsIntercept(x: Float, y: Float, yDiff: Float): Boolean { in shouldQuickSettingsIntercept() method in com.android.systemui.shade.QuickSettingsControllerSceneImpl
|
D | QuickSettingsControllerImpl.java | 661 public boolean shouldQuickSettingsIntercept(float x, float y, float yDiff) { in shouldQuickSettingsIntercept() method in QuickSettingsControllerImpl 1682 if (shouldQuickSettingsIntercept(event.getX(), event.getY(), -1)) { in handleDown() 1793 && shouldQuickSettingsIntercept(mInitialTouchX, mInitialTouchY, 0)) { in onIntercept() 1840 && shouldQuickSettingsIntercept( in onIntercept()
|
D | NotificationShadeWindowViewController.java | 501 && mQuickSettingsController.shouldQuickSettingsIntercept( in setupExpandedStatusBar()
|
D | NotificationPanelViewController.java | 4929 if (!mQsController.shouldQuickSettingsIntercept(mDownX, mDownY, 0) 5126 && !mQsController.shouldQuickSettingsIntercept(mDownX, mDownY, 0))
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/ |
D | NotificationShadeWindowViewControllerTest.kt | 450 whenever(quickSettingsController.shouldQuickSettingsIntercept(any(), any(), any())) in shouldInterceptTouchEvent_dozing_touchInLockIconArea_touchNotIntercepted() 471 whenever(quickSettingsController.shouldQuickSettingsIntercept(any(), any(), any())) in shouldInterceptTouchEvent_dozing_touchNotInLockIconArea_touchIntercepted() 490 whenever(quickSettingsController.shouldQuickSettingsIntercept(any(), any(), any())) in shouldInterceptTouchEvent_dozing_touchInStatusBar_touchIntercepted() 512 whenever(quickSettingsController.shouldQuickSettingsIntercept(any(), any(), any())) in shouldInterceptTouchEvent_dozingAndPulsing_touchIntercepted()
|