Home
last modified time | relevance | path

Searched refs:mRecentScreenshotAnimator (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DRecentsAnimationControllerTest.java162 assertNotNull(mController.mRecentScreenshotAnimator); in testCancelAnimationWithScreenShot()
163 assertTrue(mController.mRecentScreenshotAnimator.isAnimating()); in testCancelAnimationWithScreenShot()
167 spyOn(mController.mRecentScreenshotAnimator.mAnimatable); in testCancelAnimationWithScreenShot()
168 mController.mRecentScreenshotAnimator.cancelAnimation(); in testCancelAnimationWithScreenShot()
169 verify(mController.mRecentScreenshotAnimator.mAnimatable).onAnimationLeashLost(any()); in testCancelAnimationWithScreenShot()
/frameworks/base/services/core/java/com/android/server/wm/
DRecentsAnimationController.java134 SurfaceAnimator mRecentScreenshotAnimator; field in RecentsAnimationController
293 if (mRecentScreenshotAnimator != null) {
294 mRecentScreenshotAnimator.cancelAnimation();
295 mRecentScreenshotAnimator = null;
551 mRecentScreenshotAnimator = new SurfaceAnimator( in screenshotRecentTask()
560 mRecentScreenshotAnimator.transferAnimation(task.mSurfaceAnimator); in screenshotRecentTask()
585 if (mRecentScreenshotAnimator != null) { in cleanupAnimation()
586 mRecentScreenshotAnimator.cancelAnimation(); in cleanupAnimation()
587 mRecentScreenshotAnimator = null; in cleanupAnimation()