/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/ |
D | TaskbarPinningController.kt | 67 val animateToValue = in init() constant 76 taskbarSharedState.taskbarWasPinned = animateToValue == PINNING_TRANSIENT in init() 77 animateTaskbarPinning(animateToValue) in init() 99 fun animateTaskbarPinning(animateToValue: Float) { in animateTaskbarPinning() 102 getAnimatorSetForTaskbarPinningAnimation(animateToValue).apply { in animateTaskbarPinning() 113 fun getAnimatorSetForTaskbarPinningAnimation(animateToValue: Float): AnimatorSet { in getAnimatorSetForTaskbarPinningAnimation() 119 dragLayerController.taskbarBackgroundProgress.animateToValue(animateToValue), in getAnimatorSetForTaskbarPinningAnimation() 120 taskbarViewController.taskbarIconTranslationYForPinning.animateToValue(animateToValue), in getAnimatorSetForTaskbarPinningAnimation() 121 taskbarViewController.taskbarIconScaleForPinning.animateToValue(animateToValue), in getAnimatorSetForTaskbarPinningAnimation() 122 taskbarViewController.taskbarIconTranslationXForPinning.animateToValue(animateToValue) in getAnimatorSetForTaskbarPinningAnimation()
|
D | TaskbarStashController.java | 607 mAnimator.play(mIconAlphaForStash.animateToValue(isStashed ? 0 : 1) in createAnimToIsStashed() 609 mAnimator.playTogether(mTaskbarBackgroundOffset.animateToValue(isStashed ? 1 : 0) in createAnimToIsStashed() 611 mAnimator.playTogether(mIconTranslationYForStash.animateToValue(isStashed in createAnimToIsStashed() 614 mAnimator.play(mTaskbarImeBgAlpha.animateToValue( in createAnimToIsStashed() 670 fullLengthAnimatorSet.play(mIconTranslationYForStash.animateToValue(stashTranslation)); in createAnimToIsStashed() 671 fullLengthAnimatorSet.play(mTaskbarBackgroundOffset.animateToValue(1)); in createAnimToIsStashed() 674 mIconAlphaForStash.animateToValue(0), in createAnimToIsStashed() 675 mIconScaleForStash.animateToValue(mActivity.isPhoneMode() ? in createAnimToIsStashed() 679 mTaskbarStashedHandleAlpha.animateToValue(1) in createAnimToIsStashed() 691 mIconScaleForStash.animateToValue(1), in createAnimToIsStashed() [all …]
|
D | VoiceInteractionWindowController.kt | 122 .animateToValue(taskbarIconAlpha) in setIsVoiceInteractionWindowVisible() 127 .animateToValue(taskbarIconAlpha) in setIsVoiceInteractionWindowVisible() 135 .animateToValue(taskbarIconAlpha) in setIsVoiceInteractionWindowVisible()
|
D | TaskbarForceVisibleImmersiveController.java | 119 mIconAlphaForDimming.animateToValue(NAV_BAR_ICONS_UNDIM_PCT).setDuration( in undimIcons() 132 mIconAlphaForDimming.animateToValue(NAV_BAR_ICONS_DIM_PCT).setDuration( in dimIcons()
|
D | TaskbarLauncherStateController.java | 516 Animator taskbarVisibility = mTaskbarAlpha.animateToValue(taskbarAlpha); in onStateChangeApplied() 574 .animateToValue(backgroundAlpha) in onStateChangeApplied() 591 animatorSet.play(mTaskbarCornerRoundness.animateToValue(cornerRoundness)); in onStateChangeApplied() 619 .animateToValue(toAlignment) in onStateChangeApplied()
|
D | TaskbarSpringOnStashController.java | 96 return mTranslationForStash.animateToValue(0); in createResetAnimForUnstash()
|
D | TaskbarScrimViewController.java | 128 ObjectAnimator anim = mScrimAlpha.animateToValue(showScrim ? alpha : 0); in showScrim()
|
D | TaskbarTranslationController.java | 165 ObjectAnimator animator = mTranslationYForSwipe.animateToValue(0); in createAnimToResetTranslation()
|
D | KeyboardQuickSwitchView.java | 256 Animator outlineAnimation = mOutlineAnimationProgress.animateToValue(0f); in getCloseAnimation() 299 Animator outlineAnimation = mOutlineAnimationProgress.animateToValue(1f); in animateOpen()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/bubbles/ |
D | BubbleStashController.java | 138 animatorSet.playTogether(mIconScaleForStash.animateToValue(1), in animateAfterUnlock() 139 mIconTranslationYForStash.animateToValue(getBubbleBarTranslationY()), in animateAfterUnlock() 140 mIconAlphaForStash.animateToValue(1)); in animateAfterUnlock() 143 animatorSet.playTogether(mBubbleStashedHandleAlpha.animateToValue(1)); in animateAfterUnlock() 172 mIconTranslationYForStash.animateToValue(getBubbleBarTranslationYForHotseat()) in setBubblesShowingOnHome() 200 mIconTranslationYForStash.animateToValue(getBubbleBarTranslationYForTaskbar()) in setBubblesShowingOnOverview() 290 mIconTranslationYForStash.animateToValue(getStashTranslation())); in createStashAnimator() 293 mIconAlphaForStash.animateToValue(0), in createStashAnimator() 294 mIconScaleForStash.animateToValue(STASHED_BAR_SCALE)); in createStashAnimator() 296 mBubbleStashedHandleAlpha.animateToValue(1)); in createStashAnimator() [all …]
|
D | BubbleBarViewController.java | 175 mBubbleBarTranslationY.animateToValue(mBubbleStashController.getBubbleBarTranslationY()) in onBubbleBarClicked()
|
/packages/apps/Launcher3/src/com/android/launcher3/anim/ |
D | AnimatedFloat.java | 77 public ObjectAnimator animateToValue(float end) { in animateToValue() method in AnimatedFloat 78 return animateToValue(value, end); in animateToValue() 84 public ObjectAnimator animateToValue(float start, float end) { in animateToValue() method in AnimatedFloat
|
D | PendingAnimation.java | 102 Animator anim = target.animateToValue(from, to); in addAnimatedFloat()
|
/packages/apps/Launcher3/src/com/android/launcher3/util/ |
D | MultiPropertyFactory.java | 182 public Animator animateToValue(float value) { in animateToValue() method in MultiPropertyFactory.MultiProperty
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/ |
D | WorkspaceRevealAnim.java | 96 .getSysUIMultiplier().animateToValue(0f, 1f)); in WorkspaceRevealAnim()
|
D | BorderAnimator.kt | 180 return borderAnimationProgress.animateToValue(if (isAppearing) 1f else 0f).apply { in <lambda>()
|
D | StaggeredWorkspaceAnim.java | 181 .animateToValue(0f, 1f).setDuration(duration)); in StaggeredWorkspaceAnim()
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/inputconsumers/ |
D | ProgressDelegateInputConsumer.java | 156 ObjectAnimator anim = mProgress.animateToValue(endValue); in onDragEnd()
|
D | DeviceLockedInputConsumer.java | 205 ObjectAnimator animator = mProgress.animateToValue(mProgress.value, 0); in finishTouchTracking()
|
/packages/apps/Launcher3/src/com/android/launcher3/graphics/ |
D | SysUiScrim.java | 133 ObjectAnimator oa = mSysUiAnimMultiplier.animateToValue(1); in draw()
|
D | PreloadIconDrawable.java | 320 Animator iconScaleAnimator = mIconScaleMultiplier.animateToValue(1); in setInternalProgress()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | Hotseat.java | 164 mtd.getTranslationX(INDEX_BUBBLE_ADJUSTMENT_ANIM).animateToValue(tx)); in adjustForBubbleBar()
|
/packages/apps/Launcher3/src/com/android/launcher3/views/ |
D | AbstractSlideInView.java | 337 ObjectAnimator objectAnimator = mSwipeToDismissProgress.animateToValue(0f) in animateSwipeToDismissProgressToStart()
|
/packages/apps/Launcher3/src/com/android/launcher3/touch/ |
D | AbstractStateChangeTouchController.java | 402 mLauncher.getRootView().getSysUiScrim().getSysUIMultiplier().animateToValue(1f) in goToTargetState()
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/ |
D | FallbackSwipeHandler.java | 329 ObjectAnimator alphaAnim = mHomeAlpha.animateToValue(mHomeAlpha.value, 1); in playAtomicAnimation()
|