Home
last modified time | relevance | path

Searched refs:mAnimatable (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DSurfaceAnimatorTest.java74 private MyAnimatable mAnimatable; field in SurfaceAnimatorTest
89 mAnimatable = null; in tearDown()
102 assertAnimating(mAnimatable); in testRunAnimation()
103 verify(mTransaction).reparent(eq(mAnimatable.mSurface), eq(mAnimatable.mLeash)); in testRunAnimation()
108 assertNotAnimating(mAnimatable); in testRunAnimation()
128 assertAnimating(mAnimatable); in testOverrideAnimation()
149 assertAnimating(mAnimatable); in testCancelAnimation()
178 assertAnimating(mAnimatable); in testDelayingAnimationStart()
224 spyOn(mAnimatable); in testOnAnimationLeashLostWhenAnimatableParentSurfaceControlNull()
281 assertAnimating(mAnimatable); in testDeferFinishFromAdapter()
[all …]
/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DSurfaceAnimator.java62 final Animatable mAnimatable; field in SurfaceAnimator
99 mAnimatable = animatable; in SurfaceAnimator()
170 final SurfaceControl surface = mAnimatable.getSurfaceControl();
179 mAnimatable.getSurfaceWidth(), mAnimatable.getSurfaceHeight(), 0 /* x */,
181 mAnimatable.onAnimationLeashCreated(t, mLeash);
183 mAnimatable.onLeashAnimationStarting(t, mLeash);
227 mAnimatable.commitPendingTransaction();
257 mAnimatable.commitPendingTransaction();
299 final SurfaceControl surface = mAnimatable.getSurfaceControl();
307 final Transaction t = mAnimatable.getPendingTransaction();
[all …]
H A DSurfaceFreezer.java55 private final @NonNull Freezable mAnimatable; field in SurfaceFreezer
66 mAnimatable = animatable; in SurfaceFreezer()
84 mLeash = SurfaceAnimator.createAnimationLeash(mAnimatable, mAnimatable.getSurfaceControl(), in freeze()
88 mAnimatable.onAnimationLeashCreated(t, mLeash); in freeze()
90 freezeTarget = freezeTarget != null ? freezeTarget : mAnimatable.getFreezeSnapshotTarget(); in freeze()
98 Slog.w(TAG, "Failed to capture screenshot for " + mAnimatable); in freeze()
134 mAnimatable.onUnfrozen(); in unfreeze()
147 final boolean scheduleAnim = SurfaceAnimator.removeLeash(t, mAnimatable, leash, in unfreezeInner()
226 mSurfaceControl = mAnimatable.makeAnimationLeash() in Snapshot()
227 .setName("snapshot anim: " + mAnimatable.toString()) in Snapshot()