/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | CrossFadeHelper.java | 39 public static void fadeOut(final View view, final Runnable endRunnable) { in fadeOut() argument 40 fadeOut(view, ANIMATION_DURATION_LENGTH, 0, endRunnable); in fadeOut() 59 @Nullable final Runnable endRunnable) { in fadeOut() argument 67 if (endRunnable != null) { in fadeOut() 68 endRunnable.run(); in fadeOut() 153 public static void fadeIn(final View view, Runnable endRunnable) { in fadeIn() argument 154 fadeIn(view, ANIMATION_DURATION_LENGTH, /* delay= */ 0, endRunnable); in fadeIn() 173 @Nullable Runnable endRunnable) { in fadeIn() argument 184 .withEndAction(endRunnable); in fadeIn()
|
D | TransformableView.java | 46 void transformTo(TransformableView notification, Runnable endRunnable); in transformTo() argument
|
D | ViewTransformationHelper.java | 104 public void transformTo(final TransformableView notification, final Runnable endRunnable) { in transformTo() argument 119 if (endRunnable != null) { in transformTo() 120 endRunnable.run(); in transformTo()
|
D | StatusBarIconView.java | 861 public void setVisibleState(int visibleState, boolean animate, Runnable endRunnable) { in setVisibleState() argument 862 setVisibleState(visibleState, animate, endRunnable, 0); in setVisibleState() 873 public void setVisibleState(int visibleState, boolean animate, Runnable endRunnable, in setVisibleState() argument 902 runRunnable(endRunnable); in setVisibleState() 928 runRunnable(endRunnable); in setVisibleState() 943 runRunnable(endRunnable); in setVisibleState() 996 @Nullable Runnable endRunnable) { in setDozing() argument 1001 }, dozing, animate, delay, this, endRunnable); in setDozing()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/ |
D | AppearAnimationUtils.java | 90 Runnable endRunnable = null; in startAnimations() local 92 endRunnable = finishListener; in startAnimations() 100 mAppearing, mInterpolator, endRunnable); in startAnimations() 118 Runnable endRunnable = null; in startAnimations() local 120 endRunnable = finishListener; in startAnimations() 124 mAppearing, mInterpolator, endRunnable); in startAnimations() 182 boolean appearing, Interpolator interpolator, final Runnable endRunnable) { in createAnimation() argument 184 view, delay, duration, translationY, appearing, interpolator, endRunnable, null); in createAnimation() 190 final Runnable endRunnable, final AnimatorListenerAdapter animatorListener) { in createAnimation() argument 222 if (endRunnable != null) { in createAnimation() [all …]
|
D | AppearAnimationCreator.java | 32 Runnable endRunnable); in createAnimation() argument 39 Runnable endRunnable, AnimatorListenerAdapter animatorListener) {} in createAnimation() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationDozeHelper.java | 65 boolean animate, long delay, View view, @Nullable Runnable endRunnable) { in setDozing() argument 74 if (endRunnable != null) { in setDozing() 75 endRunnable.run(); in setDozing() 90 if (endRunnable != null) { in setDozing() 91 endRunnable.run(); in setDozing()
|
D | ViewGroupFadeHelper.kt | 45 endRunnable: Runnable?) { in <lambda>() 78 endRunnable?.run() in <lambda>()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/ |
D | BubbleBarAnimationHelper.java | 203 public void animateCollapse(Runnable endRunnable) { in animateCollapse() argument 230 if (endRunnable != null) { in animateCollapse() 231 endRunnable.run(); in animateCollapse() 281 public void animateDismiss(Runnable endRunnable) { in animateDismiss() argument 297 .withEndAction(endRunnable) in animateDismiss() 343 public void animateIntoTarget(MagneticTarget target, @Nullable Runnable endRunnable) { in animateIntoTarget() argument 403 if (endRunnable != null) { in animateIntoTarget() 404 endRunnable.run(); in animateIntoTarget()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/ |
D | QSIconViewImpl.java | 200 final Runnable endRunnable) { in animateGrayScale() argument 210 mColorAnimator.addListener(new EndRunnableAnimatorListener(endRunnable)); in animateGrayScale() 216 endRunnable.run(); in animateGrayScale() 268 EndRunnableAnimatorListener(Runnable endRunnable) { in EndRunnableAnimatorListener() argument 270 mRunnable = endRunnable; in EndRunnableAnimatorListener()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | StackStateAnimator.java | 525 Runnable endRunnable = null; in processAnimationEvents() local 540 endRunnable = changingView::removeFromTransientContainer; in processAnimationEvents() 555 final Runnable tmpEndRunnable = endRunnable; in processAnimationEvents() 601 } else if (endRunnable != null) { in processAnimationEvents() 602 endRunnable.run(); in processAnimationEvents() 632 Runnable endRunnable = null; in processAnimationEvents() local 647 endRunnable = changingView::removeFromTransientContainer; in processAnimationEvents() 662 final Runnable tmpEndRunnable = endRunnable; in processAnimationEvents() 708 } else if (endRunnable != null) { in processAnimationEvents() 709 endRunnable.run(); in processAnimationEvents()
|
D | NotificationStackScrollLayout.java | 2003 View child, Consumer<Boolean> endRunnable, int delay, long duration) { 2006 false /* visible */, true /* animate */, endRunnable); 2012 endRunnable, 5413 Consumer<Boolean> endRunnable = null; in clearNotifications() local 5415 endRunnable = dismissInBackend; in clearNotifications() 5417 dismissViewAnimated(view, endRunnable, totalDelay, ANIMATION_DURATION_SWIPE); in clearNotifications()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | HybridNotificationView.java | 130 public void transformTo(TransformableView notification, Runnable endRunnable) { in transformTo() argument 131 mTransformationHelper.transformTo(notification, endRunnable); in transformTo()
|
D | StackScrollerDecorView.java | 272 Runnable endRunnable) { in performAddAnimation() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NotificationIconContainer.java | 698 @Nullable Runnable endRunnable) { in setDozing() argument 705 final Runnable onChildCompleted = endRunnable == null ? null : new Runnable() { in setDozing() 711 endRunnable.run(); in setDozing() 961 final Runnable endRunnable = mIsolatedIconAnimationEndRunnable; in getEndAction() 963 endRunnable.run(); in getEndAction() 964 if (mIsolatedIconAnimationEndRunnable == endRunnable) { in getEndAction()
|
D | CentralSurfacesEmptyImpl.kt | 55 endRunnable: Runnable?, in fadeKeyguardAfterLaunchTransition()
|
D | CentralSurfaces.java | 234 Runnable endRunnable, Runnable cancelRunnable); in fadeKeyguardAfterLaunchTransition() argument
|
D | CentralSurfacesImpl.java | 2117 Runnable endRunnable, Runnable cancelRunnable) { in fadeKeyguardAfterLaunchTransition() argument 2119 mLaunchTransitionEndRunnable = endRunnable; in fadeKeyguardAfterLaunchTransition()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/ |
D | NotificationViewWrapper.java | 291 public void transformTo(TransformableView notification, Runnable endRunnable) { in transformTo() argument 293 CrossFadeHelper.fadeOut(mView, endRunnable); in transformTo()
|
D | NotificationHeaderViewWrapper.java | 325 public void transformTo(TransformableView notification, Runnable endRunnable) { in transformTo() argument 326 mTransformationHelper.transformTo(notification, endRunnable); in transformTo()
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/ |
D | PhotoViewController.java | 1025 Runnable endRunnable = new Runnable() { in runEnterAnimation() local 1034 animator.withEndAction(endRunnable); in runEnterAnimation() 1036 mHandler.postDelayed(endRunnable, ENTER_ANIMATION_DURATION_MS); in runEnterAnimation() 1107 Runnable endRunnable = new Runnable() { in runExitAnimation() local 1132 animator.withEndAction(endRunnable); in runExitAnimation() 1134 mHandler.postDelayed(endRunnable, EXIT_ANIMATION_DURATION_MS); in runExitAnimation()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
D | ViewHierarchyAnimator.kt | 447 val endRunnable = Runnable { in <lambda>() constant 490 endRunnable, in <lambda>()
|