Home
last modified time | relevance | path

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

/aosp14/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 …]
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DSurfaceAnimator.java65 final Animatable mAnimatable; field in SurfaceAnimator
104 mAnimatable = animatable; in SurfaceAnimator()
176 final SurfaceControl surface = mAnimatable.getSurfaceControl();
185 mAnimatable.getSurfaceWidth(), mAnimatable.getSurfaceHeight(), 0 /* x */,
187 mAnimatable.onAnimationLeashCreated(t, mLeash);
189 mAnimatable.onLeashAnimationStarting(t, mLeash);
239 mAnimatable.commitPendingTransaction();
269 mAnimatable.commitPendingTransaction();
322 final Transaction t = mAnimatable.getSyncTransaction();
334 mAnimatable.onAnimationLeashCreated(t, mLeash);
[all …]
H A DSurfaceFreezer.java56 private final @NonNull Freezable mAnimatable; field in SurfaceFreezer
67 mAnimatable = animatable; in SurfaceFreezer()
85 mLeash = SurfaceAnimator.createAnimationLeash(mAnimatable, mAnimatable.getSurfaceControl(), in freeze()
89 mAnimatable.onAnimationLeashCreated(t, mLeash); in freeze()
91 freezeTarget = freezeTarget != null ? freezeTarget : mAnimatable.getFreezeSnapshotTarget(); in freeze()
99 Slog.w(TAG, "Failed to capture screenshot for " + mAnimatable); in freeze()
135 mAnimatable.onUnfrozen(); in unfreeze()
148 final boolean scheduleAnim = SurfaceAnimator.removeLeash(t, mAnimatable, leash, in unfreezeInner()
227 mSurfaceControl = mAnimatable.makeAnimationLeash() in Snapshot()
228 .setName("snapshot anim: " + mAnimatable.toString()) in Snapshot()