Searched defs:startAnimation (Results 1 - 25 of 32) sorted by relevance

12

/frameworks/base/core/java/android/view/
H A DViewPropertyAnimatorRT.java48 public boolean startAnimation(ViewPropertyAnimator parent) { method in class:ViewPropertyAnimatorRT
H A DViewPropertyAnimator.java112 * A RenderThread-driven backend that may intercept startAnimation
169 startAnimation();
416 startAnimation();
861 private void startAnimation() { method in class:ViewPropertyAnimator
862 if (mRTBackend != null && mRTBackend.startAnimation(this)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DPropertyAnimator.java44 startAnimation(view, animatableProperty, newEndValue, properties);
51 public static <T extends View> void startAnimation(final T view, method in class:PropertyAnimator
/frameworks/support/browser/src/main/java/androidx/browser/browseractions/
H A DBrowserActionsFallbackMenuDialog.java50 startAnimation(true);
65 startAnimation(false);
68 private void startAnimation(final boolean isEnterAnimation) { method in class:BrowserActionsFallbackMenuDialog
/frameworks/base/services/core/java/com/android/server/wm/
H A DAnimationAdapter.java64 void startAnimation(SurfaceControl animationLeash, Transaction t, method in interface:AnimationAdapter
68 * Called when the animation that was started with {@link #startAnimation} was cancelled by the
71 * @param animationLeash The leash passed to {@link #startAnimation}.
H A DAppWindowThumbnail.java90 void startAnimation(Transaction t, Animation anim) { method in class:AppWindowThumbnail
91 startAnimation(t, anim, null /* position */);
94 void startAnimation(Transaction t, Animation anim, Point position) { method in class:AppWindowThumbnail
97 mSurfaceAnimator.startAnimation(t, new LocalAnimationAdapter(
H A DLocalAnimationAdapter.java62 public void startAnimation(SurfaceControl animationLeash, Transaction t, method in class:LocalAnimationAdapter
64 mAnimator.startAnimation(mSpec, animationLeash, t,
H A DWallpaperWindowToken.java109 void startAnimation(Animation anim) { method in class:WallpaperWindowToken
112 windowState.startAnimation(anim);
H A DRemoteAnimationController.java127 Slog.d(TAG, "startAnimation(): Notify animation start:");
342 public void startAnimation(SurfaceControl animationLeash, Transaction t, method in class:RemoteAnimationController.RemoteAnimationAdapterWrapper
344 if (DEBUG_REMOTE_ANIMATIONS) Slog.d(TAG, "startAnimation");
H A DSurfaceAnimationRunner.java118 void startAnimation(AnimationSpec a, SurfaceControl animationLeash, Transaction t, method in class:SurfaceAnimationRunner
H A DDimmer.java150 void startAnimation(SurfaceAnimator surfaceAnimator, SurfaceControl.Transaction t, method in interface:Dimmer.SurfaceAnimatorStarter
155 this(host, SurfaceAnimator::startAnimation);
333 mSurfaceAnimatorStarter.startAnimation(animator, t, new LocalAnimationAdapter(
H A DSurfaceAnimator.java102 * {@link AnimationAdapter#startAnimation} once the hierarchy with
108 void startAnimation(Transaction t, AnimationAdapter anim, boolean hidden) { method in class:SurfaceAnimator
124 mAnimation.startAnimation(mLeash, t, mInnerAnimationFinishedCallback);
128 * Begins with delaying all animations to start. Any subsequent call to {@link #startAnimation}
147 mAnimation.startAnimation(mLeash, mAnimatable.getPendingTransaction(),
351 * Callback to be passed into {@link AnimationAdapter#startAnimation} to be invoked by the
H A DRecentsAnimationController.java317 anim.startAnimation(task.getPendingTransaction(), taskAdapter, false /* hidden */);
332 void startAnimation() { method in class:RecentsAnimationController
333 if (DEBUG_RECENTS_ANIMATIONS) Slog.d(TAG, "startAnimation(): mPendingStart=" + mPendingStart
353 cancelAnimation(REORDER_MOVE_TO_ORIGINAL_POSITION, "startAnimation-noAppWindows");
372 Slog.d(TAG, "startAnimation(): Notify animation start:");
479 mService.getRecentsAnimationController().startAnimation();
597 public void startAnimation(SurfaceControl animationLeash, Transaction t, method in class:RecentsAnimationController.TaskAnimationAdapter
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DMediaNowPlayingView.java100 startAnimation();
108 startAnimation();
117 private void startAnimation() { method in class:MediaNowPlayingView
118 startAnimation(mObjectAnimator1);
119 startAnimation(mObjectAnimator2);
120 startAnimation(mObjectAnimator3);
135 private void startAnimation(Animator animator) { method in class:MediaNowPlayingView
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DDimmerTests.java110 public void startAnimation(SurfaceAnimator surfaceAnimator, SurfaceControl.Transaction t, method in class:DimmerTests.SurfaceAnimatorStarterImpl
216 verify(mSurfaceAnimatorStarter).startAnimation(any(SurfaceAnimator.class), any(
273 verify(mSurfaceAnimatorStarter, never()).startAnimation(any(SurfaceAnimator.class), any(
/frameworks/support/wear/src/main/java/androidx/wear/widget/
H A DProgressDrawable.java112 public void startAnimation() { method in class:ProgressDrawable
/frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/app/
H A DOverlayListView.java65 object.startAnimation(getDrawingTime());
206 public void startAnimation(long startTime) { method in class:OverlayListView.OverlayObject
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
H A DAppearAnimationUtils.java68 public void startAnimation(View[] objects, final Runnable finishListener) { method in class:AppearAnimationUtils
69 startAnimation(objects, finishListener, this);
78 public <T> void startAnimation(T[] objects, final Runnable finishListener, method in class:AppearAnimationUtils
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistDisclosure.java162 startAnimation();
174 private void startAnimation() { method in class:AssistDisclosure.AssistDisclosureView
/frameworks/support/mediarouter/src/main/java/androidx/mediarouter/app/
H A DOverlayListView.java65 object.startAnimation(getDrawingTime());
206 public void startAnimation(long startTime) { method in class:OverlayListView.OverlayObject
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DDockState.java186 public void startAnimation(Rect bounds, int areaAlpha, int hintAlpha, int duration, method in class:DockState.ViewState
/frameworks/base/core/java/android/widget/
H A DSmartSelectSprite.java364 public void startAnimation( method in class:SmartSelectSprite
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DGlobalScreenshot.java598 startAnimation(finisher, mDisplayMetrics.widthPixels, mDisplayMetrics.heightPixels,
671 private void startAnimation(final Runnable finisher, int w, int h, boolean statusBarVisible, method in class:GlobalScreenshot
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java729 startAnimation();
1181 private void startAnimation() { method in class:AnimatorSet
H A DValueAnimator.java1064 startAnimation();
1128 startAnimation();
1247 private void startAnimation() { method in class:ValueAnimator
1453 startAnimation();

Completed in 427 milliseconds

12