Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationTransitionAnimatorController.kt144 override fun onIntentStarted(willAnimate: Boolean) { in onIntentStarted()
146 Log.d(TAG, "onIntentStarted(willAnimate=$willAnimate)") in onIntentStarted()
148 notificationLaunchAnimationInteractor.setIsLaunchAnimationRunning(willAnimate) in onIntentStarted()
149 notificationEntry.isExpandAnimationRunning = willAnimate in onIntentStarted()
151 if (!willAnimate) { in onIntentStarted()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarTransitionAnimatorController.kt34 override fun onIntentStarted(willAnimate: Boolean) { in onIntentStarted()
35 delegate.onIntentStarted(willAnimate) in onIntentStarted()
36 if (willAnimate) { in onIntentStarted()
DLegacyActivityStarterInternalImpl.kt550 override fun onIntentStarted(willAnimate: Boolean) { in <lambda>()
551 delegate.onIntentStarted(willAnimate) in <lambda>()
552 if (willAnimate) { in <lambda>()
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DActivityTransitionAnimator.kt246 controller?.callOnIntentStartedOnMainThread(willAnimate = false) in startIntentWithAnimation()
295 val willAnimate = in startIntentWithAnimation() constant
303 "launchResult=$launchResult willAnimate=$willAnimate " + in startIntentWithAnimation()
306 controller.callOnIntentStartedOnMainThread(willAnimate) in startIntentWithAnimation()
310 if (willAnimate) { in startIntentWithAnimation()
323 private fun Controller.callOnIntentStartedOnMainThread(willAnimate: Boolean) { in Controller()
325 mainExecutor.execute { callOnIntentStartedOnMainThread(willAnimate) } in Controller()
330 "Calling controller.onIntentStarted(willAnimate=$willAnimate) " + in Controller()
334 this.onIntentStarted(willAnimate) in Controller()
587 fun onIntentStarted(willAnimate: Boolean) {} in onIntentStarted()
DDialogTransitionAnimator.kt404 override fun onIntentStarted(willAnimate: Boolean) { in <lambda>()
405 controller.onIntentStarted(willAnimate) in <lambda>()
407 if (!willAnimate) { in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationTransitionAnimatorControllerTest.kt83 controller.onIntentStarted(willAnimate = false) in testHunIsRemovedAndCallbackIsInvokedIfWeDontAnimateLaunch()
175 controller.onIntentStarted(willAnimate = true) in testNotificationIsExpandingDuringAnimation()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/
DGhostedViewTransitionAnimatorControllerTest.kt49 controller.onIntentStarted(willAnimate = true) in animatingOrphanViewDoesNotCrash()
DActivityTransitionAnimatorTest.kt472 override fun onIntentStarted(willAnimate: Boolean) { in onIntentStarted()