/frameworks/base/services/core/java/com/android/server/wm/ |
D | RemoteAnimationController.java | 158 onAnimationFinished(); in goodToGo() 177 onAnimationFinished(); in goodToGo() 211 onAnimationFinished(); in goodToGo() 229 onAnimationFinished(); in cancelAnimation() 263 .onAnimationFinished(wrappers.mAdapter.mAnimationType, in createAppAnimations() 269 .onAnimationFinished(wrappers.mThumbnailAdapter.mAnimationType, in createAppAnimations() 302 private void onAnimationFinished() { 317 .onAnimationFinished(adapters.mAdapter.mAnimationType, 322 .onAnimationFinished(adapters.mThumbnailAdapter.mAnimationType, 332 adapter.getLeashFinishedCallback().onAnimationFinished( [all …]
|
D | SurfaceAnimator.java | 117 target.mInnerAnimationFinishedCallback.onAnimationFinished(type, anim); in getFinishedCallback() 134 staticAnimationFinishedCallback.onAnimationFinished(type, anim); in getFinishedCallback() 137 animationFinishCallback.onAnimationFinished(type, anim); in getFinishedCallback() 372 mStaticAnimationFinishedCallback.onAnimationFinished(animationType, animation); 375 animationFinishedCallback.onAnimationFinished(animationType, animation); 623 void onAnimationFinished(@AnimationType int type, AnimationAdapter anim);
|
D | WindowContainerThumbnail.java | 78 new SurfaceAnimator(this, this::onAnimationFinished /* animationFinishedCallback */, in WindowContainerThumbnail() 131 private void onAnimationFinished(@AnimationType int type, AnimationAdapter anim) { in onAnimationFinished() method in WindowContainerThumbnail
|
D | RecentsAnimationController.java | 189 void onAnimationFinished(@ReorderMode int reorderMode, boolean sendUserLeaveHint); in onAnimationFinished() method 257 mCallbacks.onAnimationFinished(moveHomeToTop 432 win.onAnimationFinished(type, anim); in initialize() 526 wallpaperAdapter.getLeashFinishedCallback().onAnimationFinished( in removeWallpaperAnimation() 858 mCallbacks.onAnimationFinished(reorderMode, false /* sendUserLeaveHint */); 864 mCallbacks.onAnimationFinished(mPendingCancelWithScreenshotReorderMode, 1262 mCapturedFinishCallback.onAnimationFinished(mLastAnimationType, this);
|
D | LocalAnimationAdapter.java | 67 () -> finishCallback.onAnimationFinished(type, this)); in startAnimation()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | WindowManagerOcclusionManager.kt | 118 override fun onAnimationFinished() { in <lambda>() method 119 finishedCallback?.onAnimationFinished() in <lambda>() 169 override fun onAnimationFinished() { in <lambda>() method 170 finishedCallback?.onAnimationFinished() in <lambda>() 190 unoccludeAnimationFinishedCallback?.onAnimationFinished() in <lambda>() 227 ?.onAnimationFinished() in <lambda>()
|
D | WindowManagerLockscreenVisibilityManager.kt | 161 finishedCallback.onAnimationFinished() in onKeyguardGoingAwayRemoteAnimationStart() 240 goingAwayRemoteAnimationFinishedCallback?.onAnimationFinished() in endKeyguardGoingAwayAnimation()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | RemoteAnimationControllerTest.java | 194 finishedCaptor.getValue().onAnimationFinished(); in testRun() 195 verify(mFinishedCallback).onAnimationFinished(eq(ANIMATION_TYPE_APP_TRANSITION), in testRun() 231 verify(mFinishedCallback).onAnimationFinished(eq(ANIMATION_TYPE_APP_TRANSITION), in testTimeout() 257 verify(mFinishedCallback).onAnimationFinished(eq(ANIMATION_TYPE_APP_TRANSITION), in testTimeout_scaled() 321 verify(mFinishedCallback).onAnimationFinished(eq(ANIMATION_TYPE_APP_TRANSITION), in testRemovedBeforeStarted() 395 finishedCaptor.getValue().onAnimationFinished(); in testChangeToSmallerSize() 396 verify(mFinishedCallback).onAnimationFinished(eq(ANIMATION_TYPE_WINDOW_ANIMATION), in testChangeToSmallerSize() 398 verify(mThumbnailFinishedCallback).onAnimationFinished( in testChangeToSmallerSize() 449 finishedCaptor.getValue().onAnimationFinished(); in testChangeTolargerSize() 450 verify(mFinishedCallback).onAnimationFinished(eq(ANIMATION_TYPE_WINDOW_ANIMATION), in testChangeTolargerSize() [all …]
|
D | SurfaceAnimatorTest.java | 107 callbackCaptor.getValue().onAnimationFinished(ANIMATION_TYPE_RECENTS, mSpec); in testRunAnimation() 133 callbackCaptor.getValue().onAnimationFinished(ANIMATION_TYPE_APP_TRANSITION, mSpec); in testOverrideAnimation() 139 callbackCaptor.getValue().onAnimationFinished(ANIMATION_TYPE_APP_TRANSITION, mSpec2); in testOverrideAnimation() 213 callbackCaptor.getValue().onAnimationFinished(ANIMATION_TYPE_APP_TRANSITION, mSpec); in testTransferAnimation() 242 onFinishedCallback.onAnimationFinished(ANIMATION_TYPE_APP_TRANSITION, mSpec); in testDeferFinish() 257 onFinishedCallback.onAnimationFinished(ANIMATION_TYPE_APP_TRANSITION, mSpec); in testDeferFinishDoNotFinishNextAnimation() 282 deferredFinishAdapter.mFinishCallback.onAnimationFinished(ANIMATION_TYPE_APP_TRANSITION, in testDeferFinishFromAdapter()
|
D | RecentsAnimationControllerTest.java | 123 verify(mFinishedCallback).onAnimationFinished(eq(ANIMATION_TYPE_RECENTS), eq(adapter)); in testRemovedBeforeStarted_expectCanceled() 284 verify(mAnimationCallbacks).onAnimationFinished(REORDER_KEEP_IN_PLACE, false); in testDeferCancelAnimation() 310 verify(mAnimationCallbacks).onAnimationFinished(REORDER_KEEP_IN_PLACE, false); in testDeferCancelAnimationWithScreenShot() 351 verify(mAnimationCallbacks).onAnimationFinished(REORDER_KEEP_IN_PLACE, false); in testBinderDiedAfterCancelWithDeferredScreenshot() 723 verify(win1).onAnimationFinished(eq(ANIMATION_TYPE_RECENTS), any()); in testCleanupAnimation_expectExitAnimationDone() 742 verify(mAnimationCallbacks).onAnimationFinished(REORDER_MOVE_TO_TOP, false); in testCancelForRotation_ReorderToTop() 757 verify(mAnimationCallbacks).onAnimationFinished(REORDER_MOVE_TO_ORIGINAL_POSITION, false); in testCancelForRotation_ReorderToOriginalPosition() 780 verify(mAnimationCallbacks).onAnimationFinished(REORDER_MOVE_TO_TOP, false); in testCancelForStartHome()
|
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/activityembedding/ |
D | ActivityEmbeddingAnimationRunnerTests.java | 70 doNothing().when(mController).onAnimationFinished(any()); in setup() 91 verify(mController, never()).onAnimationFinished(any()); in testStartAnimation() 96 verify(mController).onAnimationFinished(mTransition); in testStartAnimation()
|
D | ActivityEmbeddingControllerTests.java | 264 mController.onAnimationFinished(mTransition); in testMergeAnimation() 289 () -> mController.onAnimationFinished(mTransition)); in testOnAnimationFinished() 299 mController.onAnimationFinished(mTransition); in testOnAnimationFinished() 304 () -> mController.onAnimationFinished(mTransition)); in testOnAnimationFinished()
|
/frameworks/base/core/java/android/window/ |
D | IBackAnimationFinishedCallback.aidl | 26 void onAnimationFinished(in boolean triggerBack); in onAnimationFinished() method
|
/frameworks/base/core/java/android/view/ |
D | IRemoteAnimationFinishedCallback.aidl | 27 void onAnimationFinished(); in onAnimationFinished() method
|
/frameworks/base/libs/hwui/jni/ |
D | android_graphics_animation_RenderNodeAnimator.cpp | 43 virtual void onAnimationFinished(BaseRenderNodeAnimator* animator) { in onAnimationFinished() function in android::AnimationListenerLifecycleChecker 63 onAnimationFinished(NULL); in ~AnimationListenerBridge() 67 virtual void onAnimationFinished(BaseRenderNodeAnimator*) { in onAnimationFinished() function in android::AnimationListenerBridge
|
D | android_graphics_drawable_AnimatedVectorDrawable.cpp | 55 onAnimationFinished(NULL); in createAnimationListener() 59 virtual void onAnimationFinished(BaseRenderNodeAnimator*) { in createAnimationListener() function in android::createAnimationListener::AnimationListenerBridge
|
/frameworks/base/libs/hwui/ |
D | PropertyValuesAnimatorSet.cpp | 58 listener->onAnimationFinished(animator); in onFinished() 182 void PropertyAnimatorSetListener::onAnimationFinished(BaseRenderNodeAnimator* animator) { in onAnimationFinished() function in android::uirenderer::PropertyAnimatorSetListener
|
D | RootRenderNode.cpp | 43 mListener->onAnimationFinished(nullptr); in handleMessage() 278 listener->onAnimationFinished(animator); in callOnFinished()
|
D | PropertyValuesAnimatorSet.h | 91 virtual void onAnimationFinished(BaseRenderNodeAnimator* animator) override;
|
D | AnimationContext.cpp | 80 listener->onAnimationFinished(animator); in callOnFinished()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/utils/ |
D | MockAnimationAdapter.java | 43 finishCallback.onAnimationFinished(0, null); in startAnimation()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/clipboardoverlay/ |
D | ClipboardTransitionExecutor.kt | 85 finishedCallback.onAnimationFinished() in onAnimationStart()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
D | RemoteAnimationRunnerCompat.java | 61 finishedCallback.onAnimationFinished(); in onAnimationStart() 206 public void onAnimationFinished() { in wrap()
|
D | DialogTransitionAnimator.kt | 856 private fun hideDialogIntoView(onAnimationFinished: (Boolean) -> Unit) { in hideDialogIntoView() 865 onAnimationFinished(false /* instantDismiss */) in hideDialogIntoView() 888 onAnimationFinished(true /* instantDismiss */) in hideDialogIntoView()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/back/ |
D | BackAnimationRunner.java | 92 public void onAnimationFinished() { in startAnimation()
|