/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/animation/ |
D | Interpolators.java | 23 import android.view.animation.PathInterpolator; 35 public static final Interpolator ALPHA_IN = new PathInterpolator(0.4f, 0f, 1f, 1f); 40 public static final Interpolator ALPHA_OUT = new PathInterpolator(0f, 0f, 0.8f, 1f); 45 public static final Interpolator FAST_OUT_LINEAR_IN = new PathInterpolator(0.4f, 0f, 1f, 1f); 50 public static final Interpolator FAST_OUT_SLOW_IN = new PathInterpolator(0.4f, 0f, 0.2f, 1f); 55 public static final Interpolator LINEAR_OUT_SLOW_IN = new PathInterpolator(0f, 0f, 0.2f, 1f); 66 public static final Interpolator EMPHASIZED_ACCELERATE = new PathInterpolator( 73 public static final Interpolator EMPHASIZED_DECELERATE = new PathInterpolator( 80 public static final Interpolator STANDARD_DECELERATE = new PathInterpolator(0f, 0f, 0f, 1f); 85 public static final Interpolator TOUCH_RESPONSE = new PathInterpolator(0.3f, 0f, 0.1f, 1f); [all …]
|
D | FlingAnimationUtils.java | 24 import android.view.animation.PathInterpolator; 53 private PathInterpolator mInterpolator; 241 mInterpolator = new PathInterpolator(x1, y1, x2, y2); in getInterpolator() 301 Interpolator mLinearOutFasterIn = new PathInterpolator(0, 0, LINEAR_OUT_FASTER_IN_X2, y2); in getDismissingProperties()
|
/frameworks/libs/systemui/animationlib/src/com/android/app/animation/ |
D | Interpolators.java | 27 import android.view.animation.PathInterpolator; 60 public static final Interpolator EMPHASIZED_ACCELERATE = new PathInterpolator( 67 public static final Interpolator EMPHASIZED_DECELERATE = new PathInterpolator( 77 EXAGGERATED_EASE = new PathInterpolator(exaggeratedEase); 100 public static final Interpolator STANDARD = new PathInterpolator( 107 public static final Interpolator STANDARD_ACCELERATE = new PathInterpolator( 114 public static final Interpolator STANDARD_DECELERATE = new PathInterpolator( 126 public static final Interpolator LEGACY = new PathInterpolator(0.4f, 0f, 0.2f, 1f); 132 public static final Interpolator LEGACY_ACCELERATE = new PathInterpolator(0.4f, 0f, 1f, 1f); 138 public static final Interpolator LEGACY_DECELERATE = new PathInterpolator(0f, 0f, 0.2f, 1f); [all …]
|
D | InterpolatorsAndroidX.java | 28 import androidx.core.animation.PathInterpolator; 67 public static final Interpolator EMPHASIZED_ACCELERATE = new PathInterpolator( 74 public static final Interpolator EMPHASIZED_DECELERATE = new PathInterpolator( 83 EXAGGERATED_EASE = new PathInterpolator(exaggeratedEase); 106 public static final Interpolator STANDARD = new PathInterpolator( 113 public static final Interpolator STANDARD_ACCELERATE = new PathInterpolator( 120 public static final Interpolator STANDARD_DECELERATE = new PathInterpolator( 132 public static final Interpolator LEGACY = new PathInterpolator(0.4f, 0f, 0.2f, 1f); 138 public static final Interpolator LEGACY_ACCELERATE = new PathInterpolator(0.4f, 0f, 1f, 1f); 144 public static final Interpolator LEGACY_DECELERATE = new PathInterpolator(0f, 0f, 0.2f, 1f); [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/ |
D | SystemStatusAnimationScheduler.kt | 22 import androidx.core.animation.PathInterpolator 89 @JvmField val STATUS_BAR_X_MOVE_OUT = PathInterpolator(0.33f, 0f, 0f, 1f) 90 @JvmField val STATUS_BAR_X_MOVE_IN = PathInterpolator(0f, 0f, 0f, 1f) 95 val STATUS_CHIP_WIDTH_TO_DOT_KEYFRAME_1 = PathInterpolator(0.44f, 0f, 0.25f, 1f) 96 val STATUS_CHIP_WIDTH_TO_DOT_KEYFRAME_2 = PathInterpolator(0.3f, 0f, 0.26f, 1f) 97 val STATUS_CHIP_HEIGHT_TO_DOT_KEYFRAME_1 = PathInterpolator(0.4f, 0f, 0.17f, 1f) 98 val STATUS_CHIP_HEIGHT_TO_DOT_KEYFRAME_2 = PathInterpolator(0.3f, 0f, 0f, 1f) 99 val STATUS_CHIP_MOVE_TO_DOT = PathInterpolator(0f, 0f, 0.05f, 1f)
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/ |
D | TvPipInterpolators.java | 20 import android.view.animation.PathInterpolator; 30 public static final Interpolator STANDARD = new PathInterpolator(0.2f, 0.1f, 0f, 1f); 35 public static final Interpolator BROWSE = new PathInterpolator(0.18f, 1f, 0.22f, 1f); 40 public static final Interpolator ENTER = new PathInterpolator(0.12f, 1f, 0.4f, 1f); 45 public static final Interpolator EXIT = new PathInterpolator(0.4f, 1f, 0.12f, 1f);
|
/frameworks/base/core/java/com/android/internal/transition/ |
D | TransitionConstants.java | 19 import android.view.animation.PathInterpolator; 22 static final TimeInterpolator LINEAR_OUT_SLOW_IN = new PathInterpolator(0, 0, 0.2f, 1); 23 static final TimeInterpolator FAST_OUT_SLOW_IN = new PathInterpolator(0.4f, 0, 0.2f, 1);
|
/frameworks/base/core/java/android/view/animation/ |
D | PathInterpolator.java | 51 public class PathInterpolator extends BaseInterpolator implements NativeInterpolator { class 66 public PathInterpolator(@NonNull Path path) { in PathInterpolator() method in PathInterpolator 77 public PathInterpolator(float controlX, float controlY) { in PathInterpolator() method in PathInterpolator 90 public PathInterpolator(float controlX1, float controlY1, float controlX2, float controlY2) { in PathInterpolator() method in PathInterpolator 94 public PathInterpolator(Context context, AttributeSet attrs) { in PathInterpolator() method in PathInterpolator 99 public PathInterpolator(Resources res, @Nullable Theme theme, @NonNull AttributeSet attrs) { in PathInterpolator() method in PathInterpolator 102 a = theme.obtainStyledAttributes(attrs, R.styleable.PathInterpolator, 0, 0); in PathInterpolator() 104 a = res.obtainAttributes(attrs, R.styleable.PathInterpolator); in PathInterpolator()
|
D | BackGestureInterpolator.java | 22 public class BackGestureInterpolator extends PathInterpolator {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/ |
D | EdgePanelParams.kt | 6 import androidx.core.animation.PathInterpolator 157 entryWidthInterpolator = PathInterpolator(.19f, 1.27f, .71f, .86f) in update() 158 entryWidthTowardsEdgeInterpolator = PathInterpolator(1f, -3f, 1f, 1.2f) in update() 159 activeWidthInterpolator = PathInterpolator(.7f, -0.24f, .48f, 1.21f) in update() 161 horizontalTranslationInterpolator = PathInterpolator(0.2f, 1.0f, 1.0f, 1.0f) in update() 162 verticalTranslationInterpolator = PathInterpolator(.5f, 1.15f, .41f, .94f) in update() 163 farCornerInterpolator = PathInterpolator(.03f, .19f, .14f, 1.09f) in update() 164 edgeCornerInterpolator = PathInterpolator(0f, 1.11f, .85f, .84f) in update() 165 heightInterpolator = PathInterpolator(1f, .05f, .9f, -0.29f) in update()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | PathInterpolatorBuilder.java | 103 return new PathInterpolator(mDist, mX); in getXInterpolator() 107 return new PathInterpolator(mDist, mY); in getYInterpolator() 110 private static class PathInterpolator extends BaseInterpolator { class in PathInterpolatorBuilder 114 private PathInterpolator(float[] xs, float[] ys) { in PathInterpolator() method in PathInterpolatorBuilder.PathInterpolator
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | NavBarFadeAnimationController.java | 26 import android.view.animation.PathInterpolator; 36 new PathInterpolator(0f, 0f, 0f, 1f); 38 new PathInterpolator(0.2f, 0f, 1f, 1f);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/toast/ |
D | ToastDefaultAnimation.kt | 22 import android.view.animation.PathInterpolator 40 val scaleInterp = PathInterpolator(0f, 0f, 0f, 1f) in toastIn() 78 val scaleInterp = PathInterpolator(0.3f, 0f, 1f, 1f) in toastOut()
|
/frameworks/base/libs/hwui/ |
D | Interpolator.h | 110 class PathInterpolator : public Interpolator { 112 explicit PathInterpolator(std::vector<float>&& x, std::vector<float>&& y) : mX(x), mY(y) {} in PathInterpolator() function
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ViewGroupFader.java | 24 import android.view.animation.PathInterpolator; 67 private BaseInterpolator mTopInterpolator = new PathInterpolator(0.3f, 0f, 0.7f, 1f); 68 private BaseInterpolator mBottomInterpolator = new PathInterpolator(0.3f, 0f, 0.7f, 1f);
|
D | MessagingPropertyAnimator.java | 26 import android.view.animation.PathInterpolator; 35 public static final Interpolator ALPHA_IN = new PathInterpolator(0.4f, 0f, 1f, 1f); 36 public static final Interpolator ALPHA_OUT = new PathInterpolator(0f, 0f, 0.8f, 1f);
|
D | MessagingLayout.java | 43 import android.view.animation.PathInterpolator; 64 public static final Interpolator LINEAR_OUT_SLOW_IN = new PathInterpolator(0f, 0f, 0.2f, 1f); 65 public static final Interpolator FAST_OUT_LINEAR_IN = new PathInterpolator(0.4f, 0f, 1f, 1f); 66 public static final Interpolator FAST_OUT_SLOW_IN = new PathInterpolator(0.4f, 0f, 0.2f, 1f);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/ui/ |
D | DefaultUiController.java | 33 import android.view.animation.PathInterpolator; 73 private final PathInterpolator mProgressInterpolator = new PathInterpolator(.83f, 0, .84f, 1);
|
/frameworks/base/core/java/android/view/ |
D | ImeBackAnimationController.java | 34 import android.view.animation.PathInterpolator; 55 private static final Interpolator EMPHASIZED_DECELERATE = new PathInterpolator( 57 private static final Interpolator STANDARD_ACCELERATE = new PathInterpolator(0.3f, 0f, 1f, 1f);
|
/frameworks/base/libs/hwui/tests/unit/ |
D | PathInterpolatorTests.cpp | 83 PathInterpolator interpolator(getX(data), getY(data)); in TEST()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | SplitShadeLockScreenOverScroller.kt | 8 import android.view.animation.PathInterpolator in <lambda>() 153 private val RELEASE_OVER_SCROLL_INTERPOLATOR = PathInterpolator(0.17f, 0f, 0f, 1f) in <lambda>()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/compatui/ |
D | UserAspectRatioSettingsLayout.java | 30 import android.view.animation.PathInterpolator; 46 new PathInterpolator(0.2f, 0f, 0f, 1f);
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/ |
D | SplashScreenExitAnimationUtils.java | 45 import android.view.animation.PathInterpolator; 61 private static final Interpolator ICON_INTERPOLATOR = new PathInterpolator(0.15f, 0f, 1f, 1f); 63 new PathInterpolator(0f, 0f, 0.4f, 1f); 64 private static final Interpolator SHIFT_UP_INTERPOLATOR = new PathInterpolator(0f, 0f, 0f, 1f);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/charging/ |
D | WirelessChargingLayout.java | 28 import android.view.animation.PathInterpolator; 109 textSizeAnimator.setInterpolator(new PathInterpolator(0, 0, 0, 1)); in init() 210 textSizeAnimatorTransmitting.setInterpolator(new PathInterpolator(0, 0, 0, 1)); in init()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/surfaceeffects/ripple/ |
D | RippleShader.kt | 21 import android.view.animation.PathInterpolator 192 private val STANDARD: Interpolator = PathInterpolator(0.2f, 0f, 0f, 1f)
|