Home
last modified time | relevance | path

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

/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/
DLauncherAppTransitionManagerImpl.java20 import static com.android.launcher3.anim.Interpolators.AGGRESSIVE_EASE;
124 transY.setInterpolator(AGGRESSIVE_EASE); in composeViewContentAnimator()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
DQuickstepAppTransitionManagerImpl.java30 import static com.android.launcher3.anim.Interpolators.AGGRESSIVE_EASE;
375 transY.setInterpolator(AGGRESSIVE_EASE); in getLauncherContentAnimator()
533 FloatProp mDx = new FloatProp(0, dX, 0, xDuration, AGGRESSIVE_EASE); in getOpeningWindowAnimators()
534 FloatProp mDy = new FloatProp(0, dY, 0, yDuration, AGGRESSIVE_EASE); in getOpeningWindowAnimators()
/packages/apps/Launcher3/src/com/android/launcher3/anim/
DInterpolators.java58 public static final Interpolator AGGRESSIVE_EASE = new PathInterpolator(0.2f, 0f, 0f, 1f); field in Interpolators