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.java166 assertNull(mController.mRecentScreenshotAnimator); in testDeferCancelAnimation()
189 assertNotNull(mController.mRecentScreenshotAnimator); in testDeferCancelAnimationWithScreenShot()
190 assertTrue(mController.mRecentScreenshotAnimator.isAnimating()); in testDeferCancelAnimationWithScreenShot()
194 spyOn(mController.mRecentScreenshotAnimator.mAnimatable); in testDeferCancelAnimationWithScreenShot()
195 mController.mRecentScreenshotAnimator.cancelAnimation(); in testDeferCancelAnimationWithScreenShot()
196 verify(mController.mRecentScreenshotAnimator.mAnimatable).onAnimationLeashLost(any()); in testDeferCancelAnimationWithScreenShot()
/frameworks/base/services/core/java/com/android/server/wm/
DRecentsAnimationController.java136 SurfaceAnimator mRecentScreenshotAnimator; field in RecentsAnimationController
320 if (mRecentScreenshotAnimator != null) {
321 mRecentScreenshotAnimator.cancelAnimation();
322 mRecentScreenshotAnimator = null;
592 mRecentScreenshotAnimator = new SurfaceAnimator( in screenshotRecentTask()
601 mRecentScreenshotAnimator.transferAnimation(task.mSurfaceAnimator); in screenshotRecentTask()
627 if (mRecentScreenshotAnimator != null) { in cleanupAnimation()
628 mRecentScreenshotAnimator.cancelAnimation(); in cleanupAnimation()
629 mRecentScreenshotAnimator = null; in cleanupAnimation()