Searched refs:animatable (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/ |
D | SurfaceAnimator.java | 74 SurfaceAnimator(Animatable animatable, in SurfaceAnimator() argument 77 mAnimatable = animatable; in SurfaceAnimator() 351 static boolean removeLeash(Transaction t, Animatable animatable, @NonNull SurfaceControl leash, 354 final SurfaceControl surface = animatable.getSurfaceControl(); 355 final SurfaceControl parent = animatable.getParentSurfaceControl(); 378 animatable.onAnimationLeashLost(t); 384 static SurfaceControl createAnimationLeash(Animatable animatable, SurfaceControl surface, 388 final SurfaceControl.Builder builder = animatable.makeAnimationLeash() 389 .setParent(animatable.getAnimationLeashParent())
|
D | SurfaceFreezer.java | 63 SurfaceFreezer(Freezable animatable, WindowManagerService service) { in SurfaceFreezer() argument 64 mAnimatable = animatable; in SurfaceFreezer()
|
D | ScreenRotationAnimation.java | 701 SurfaceAnimator.Animatable animatable, in startAnimation() argument 705 animatable, animationFinishedCallback, mService); in startAnimation()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | SurfaceAnimatorTest.java | 305 private void assertAnimating(MyAnimatable animatable) { in assertAnimating() argument 306 assertTrue(animatable.mSurfaceAnimator.isAnimating()); in assertAnimating() 307 assertNotNull(animatable.mSurfaceAnimator.getAnimation()); in assertAnimating() 310 private void assertNotAnimating(MyAnimatable animatable) { in assertNotAnimating() argument 311 assertFalse(animatable.mSurfaceAnimator.isAnimating()); in assertNotAnimating() 312 assertNull(animatable.mSurfaceAnimator.getAnimation()); in assertNotAnimating()
|