Home
last modified time | relevance | path

Searched refs:willAnimate (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarLaunchAnimatorController.kt14 override fun onIntentStarted(willAnimate: Boolean) { in <lambda>()
15 delegate.onIntentStarted(willAnimate) in <lambda>()
16 if (!willAnimate) { in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationLaunchAnimatorController.kt109 override fun onIntentStarted(willAnimate: Boolean) { in onIntentStarted()
110 notificationShadeWindowViewController.setExpandAnimationRunning(willAnimate) in onIntentStarted()
111 notificationEntry.isExpandAnimationRunning = willAnimate in onIntentStarted()
113 if (!willAnimate) { in onIntentStarted()
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DActivityLaunchAnimator.kt115 controller?.callOnIntentStartedOnMainThread(willAnimate = false) in <lambda>()
149 val willAnimate = in <lambda>() constant
154 Log.d(TAG, "launchResult=$launchResult willAnimate=$willAnimate isOnKeyguard=$isOnKeyguard") in <lambda>()
155 controller.callOnIntentStartedOnMainThread(willAnimate) in <lambda>()
159 if (willAnimate) { in <lambda>()
169 private fun Controller.callOnIntentStartedOnMainThread(willAnimate: Boolean) { in <lambda>()
172 this.onIntentStarted(willAnimate) in <lambda>()
175 this.onIntentStarted(willAnimate) in <lambda>()
284 fun onIntentStarted(willAnimate: Boolean) {} in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationLaunchAnimatorControllerTest.kt63 controller.onIntentStarted(willAnimate = false) in testHunIsRemovedIfWeDontAnimateLaunch()
95 controller.onIntentStarted(willAnimate = true) in testNotificationIsExpandingDuringAnimation()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/
DGhostedViewLaunchAnimatorControllerTest.kt37 controller.onIntentStarted(willAnimate = true) in animatingOrphanViewDoesNotCrash()
DActivityLaunchAnimatorTest.kt226 override fun onIntentStarted(willAnimate: Boolean) { in onIntentStarted()