/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarLaunchAnimatorController.kt | 16 private val shadeViewController: ShadeViewController, 29 shadeViewController.setIsLaunchAnimationRunning(true) 37 shadeViewController.setIsLaunchAnimationRunning(true) 39 shadeViewController.collapseWithDuration( 46 shadeViewController.setIsLaunchAnimationRunning(false) 56 shadeViewController.applyLaunchAnimationProgress(linearProgress) 61 shadeViewController.setIsLaunchAnimationRunning(false)
|
H A D | PhoneStatusBarViewController.kt | 56 private val shadeViewController: ShadeViewController, 189 if (!shadeViewController.isViewEnabled) { 194 if (shadeViewController.isFullyCollapsed && 200 shadeViewController.startTrackingExpansionFromStatusBar() 202 return shadeViewController.handleExternalTouch(event) 246 private val shadeViewController: ShadeViewController, 268 shadeViewController,
|
H A D | UnlockedScreenOffAnimationController.kt | 71 private lateinit var shadeViewController: ShadeViewController 140 shadeViewController: ShadeViewController, 146 this.shadeViewController = shadeViewController 292 shadeViewController.showAodUi() 341 shadeViewController.isPanelExpanded) &&
|
H A D | ScreenOffAnimationController.kt | 43 shadeViewController: ShadeViewController, 46 animations.forEach { it.initialize(centralSurfaces, shadeViewController, lightRevealScrim) } 207 shadeViewController: ShadeViewController,
|
H A D | StatusBarHeadsUpChangeListener.java | 50 ShadeViewController shadeViewController, in StatusBarHeadsUpChangeListener() argument 58 mShadeViewController = shadeViewController; in StatusBarHeadsUpChangeListener()
|
H A D | HeadsUpAppearanceController.java | 120 ShadeViewController shadeViewController, in HeadsUpAppearanceController() argument 134 mTrackedChild = shadeViewController.getShadeHeadsUpTracker() in HeadsUpAppearanceController() 140 mShadeViewController = shadeViewController; in HeadsUpAppearanceController()
|
H A D | CentralSurfacesCommandQueueCallbacks.java | 131 ShadeViewController shadeViewController, in CentralSurfacesCommandQueueCallbacks() argument 160 mShadeViewController = shadeViewController; in CentralSurfacesCommandQueueCallbacks()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/back/domain/interactor/ |
H A D | BackActionInteractor.kt | 37 private lateinit var shadeViewController: ShadeViewController 42 this.shadeViewController = svController 61 shadeViewController.animateCollapseQs(false) 64 if (shadeViewController.closeUserSwitcherIfOpen()) { 68 if (shadeViewController.canBeCollapsed()) { 70 shadeViewController.onBackPressed()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/ |
H A D | ShadeControllerImplTest.kt | 60 @Mock private lateinit var shadeViewController: ShadeViewController 84 Lazy { shadeViewController }, 97 verify(shadeViewController, never()).expandToNotifications() 99 verify(shadeViewController, never()).expand(ArgumentMatchers.anyBoolean()) 108 verify(shadeViewController).expandToNotifications() 110 verify(shadeViewController).expandToQs() 116 whenever(shadeViewController.isTracking).thenReturn(true) 128 whenever(shadeViewController.isTracking).thenReturn(false)
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
H A D | PhoneStatusBarViewControllerTest.kt | 60 private lateinit var shadeViewController: ShadeViewController 158 verify(shadeViewController, never()).handleExternalTouch(any()) 164 `when`(shadeViewController.isViewEnabled).thenReturn(false) 168 verify(shadeViewController, never()).handleExternalTouch(any()) 174 `when`(shadeViewController.isViewEnabled).thenReturn(false) 179 verify(shadeViewController).handleExternalTouch(event) 185 `when`(shadeViewController.isViewEnabled).thenReturn(true) 190 verify(shadeViewController).handleExternalTouch(event) 196 `when`(shadeViewController.isFullyCollapsed).thenReturn(true) 201 verify(shadeViewController, never()).handleExternalTouch(any()) [all …]
|
H A D | UnlockedScreenOffAnimationControllerTest.kt | 67 private lateinit var shadeViewController: ShadeViewController 100 controller.initialize(centralSurfaces, shadeViewController, lightRevealScrim) 104 `when`(shadeViewController.isFullyCollapsed).thenReturn(true) 134 verify(shadeViewController, times(1)).showAodUi() 150 verify(shadeViewController, never()).showAodUi() 172 verify(shadeViewController, never()).showAodUi() 187 verify(shadeViewController).showAodUi()
|
H A D | ActivityStarterImplTest.kt | 69 @Mock private lateinit var shadeViewController: ShadeViewController 96 Lazy { shadeViewController },
|
H A D | StatusBarNotificationPresenterTest.java | 105 ShadeViewController shadeViewController = mock(ShadeViewController.class); in setup() local 108 shadeViewController, in setup()
|
H A D | PhoneStatusBarViewTest.kt | 35 private lateinit var shadeViewController: ShadeViewController
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/back/domain/interactor/ |
H A D | BackActionInteractorTest.kt | 51 @Mock private lateinit var shadeViewController: ShadeViewController 63 backActionInteractor.setup(qsController, shadeViewController) 94 verify(shadeViewController, atLeastOnce()).animateCollapseQs(anyBoolean()) 100 whenever(shadeViewController.closeUserSwitcherIfOpen()).thenReturn(true) 106 verify(shadeViewController, never()).animateCollapseQs(anyBoolean()) 118 verify(shadeViewController, never()).animateCollapseQs(anyBoolean())
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
H A D | LockscreenShadeTransitionControllerTest.kt | 91 @Mock lateinit var shadeViewController: ShadeViewController 176 transitionController.shadeViewController = shadeViewController 274 verify(shadeViewController).transitionToExpandedShade(anyLong()) 282 verify(shadeViewController).transitionToExpandedShade(anyLong()) 290 verify(shadeViewController).transitionToExpandedShade(anyLong()) 354 verify(shadeViewController) 368 verify(shadeViewController).setKeyguardTransitionProgress(anyFloat(), eq(0)) 381 verify(shadeViewController) 400 verify(shadeViewController) 519 verify(shadeViewController).setKeyguardStatusBarAlpha(expectedAlpha) [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/unfold/ |
H A D | FoldAodAnimationController.kt | 66 private lateinit var shadeViewController: ShadeViewController 93 shadeViewController: ShadeViewController, 96 this.shadeViewController = shadeViewController 136 shadeViewController.shadeFoldAnimator
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/touch/ |
H A D | ShadeTouchHandler.java | 45 ShadeViewController shadeViewController, in ShadeTouchHandler() argument 48 mShadeViewController = shadeViewController; in ShadeTouchHandler()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/unfold/ |
H A D | FoldAodAnimationControllerTest.kt | 75 @Mock lateinit var shadeViewController: ShadeViewController 99 whenever(shadeViewController.shadeFoldAnimator).thenReturn(shadeFoldAnimator) 126 .apply { initialize(centralSurfaces, shadeViewController, lightRevealScrim) }
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/dagger/ |
H A D | StatusBarViewModule.java | 90 ShadeViewController shadeViewController, in createCollapsedStatusBarFragment() argument 115 shadeViewController, in createCollapsedStatusBarFragment()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | BrightnessMirrorController.java | 57 ShadeViewController shadeViewController, in BrightnessMirrorController() argument 65 mNotificationPanel = shadeViewController; in BrightnessMirrorController()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | LockscreenShadeTransitionController.kt | 89 lateinit var shadeViewController: ShadeViewController 192 keyguardTransitionControllerFactory.create(shadeViewController) 325 shadeViewController.transitionToExpandedShade(delay) 537 shadeViewController.transitionToExpandedShade(delay) 655 shadeViewController.transitionToExpandedShade(delay) 680 shadeViewController.setOverStretchAmount(overflow)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | KeyguardViewController.java | 189 ShadeViewController shadeViewController, in registerCentralSurfaces() argument
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/recents/ |
H A D | OverviewProxyServiceTest.kt | 97 @Mock private lateinit var shadeViewController: ShadeViewController 137 { shadeViewController },
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/transition/ |
H A D | ShadeTransitionController.kt | 50 lateinit var shadeViewController: ShadeViewController
|