Home
last modified time | relevance | path

Searched refs:PathInterpolator (Results 1 – 25 of 33) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/
DInterpolators.java25 import android.view.animation.PathInterpolator;
33 public static final Interpolator FAST_OUT_SLOW_IN = new PathInterpolator(0.4f, 0f, 0.2f, 1f);
40 new PathInterpolator(0.8f, 0f, 0.6f, 1f);
41 public static final Interpolator FAST_OUT_LINEAR_IN = new PathInterpolator(0.4f, 0f, 1f, 1f);
42 public static final Interpolator LINEAR_OUT_SLOW_IN = new PathInterpolator(0f, 0f, 0.2f, 1f);
43 public static final Interpolator ALPHA_IN = new PathInterpolator(0.4f, 0f, 1f, 1f);
44 public static final Interpolator ALPHA_OUT = new PathInterpolator(0f, 0f, 0.8f, 1f);
49 public static final Interpolator CUSTOM_40_40 = new PathInterpolator(0.4f, 0f, 0.6f, 1f);
51 public static final Interpolator ICON_OVERSHOT = new PathInterpolator(0.4f, 0f, 0.2f, 1.4f);
53 = new PathInterpolator(0.3f, 0, 0.5f, 1);
[all …]
/frameworks/base/core/java/android/view/animation/
DPathInterpolator.java49 public class PathInterpolator extends BaseInterpolator implements NativeInterpolatorFactory { class
64 public PathInterpolator(Path path) { in PathInterpolator() method in PathInterpolator
75 public PathInterpolator(float controlX, float controlY) { in PathInterpolator() method in PathInterpolator
88 public PathInterpolator(float controlX1, float controlY1, float controlX2, float controlY2) { in PathInterpolator() method in PathInterpolator
92 public PathInterpolator(Context context, AttributeSet attrs) { in PathInterpolator() method in PathInterpolator
97 public PathInterpolator(Resources res, Theme theme, AttributeSet attrs) { in PathInterpolator() method in PathInterpolator
100 a = theme.obtainStyledAttributes(attrs, R.styleable.PathInterpolator, 0, 0); in PathInterpolator()
102 a = res.obtainAttributes(attrs, R.styleable.PathInterpolator); in PathInterpolator()
DAnimationUtils.java429 interpolator = new PathInterpolator(res, theme, attrs); in createInterpolatorFromXml()
/frameworks/base/core/java/com/android/internal/transition/
DTransitionConstants.java19 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/packages/SystemUI/src/com/android/systemui/qs/
DPathInterpolatorBuilder.java103 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/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/
DRecentsEntrancePathInterpolator.java19 import android.view.animation.PathInterpolator;
24 public class RecentsEntrancePathInterpolator extends PathInterpolator {
DTaskStackAnimationHelper.java27 import android.view.animation.PathInterpolator;
92 new PathInterpolator(0.4f, 0, 0.6f, 1f);
97 new PathInterpolator(0.4f, 0, 1f, 1f);
100 new PathInterpolator(0.4f, 0, 0, 1f);
102 new PathInterpolator(0, 0, 0, 1f);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DHeadsUpAppearInterpolator.java20 import android.view.animation.PathInterpolator;
25 public class HeadsUpAppearInterpolator extends PathInterpolator {
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/ui/
DDefaultUiController.java32 import android.view.animation.PathInterpolator;
58 private final PathInterpolator mProgressInterpolator = new PathInterpolator(.83f, 0, .84f, 1);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DFlingAnimationUtils.java24 import android.view.animation.PathInterpolator;
55 private PathInterpolator mInterpolator;
212 mInterpolator = new PathInterpolator(x1, y1, x2, y2); in getInterpolator()
272 Interpolator mLinearOutFasterIn = new PathInterpolator(0, 0, LINEAR_OUT_FASTER_IN_X2, y2); in getDismissingProperties()
/frameworks/base/libs/hwui/
DInterpolator.h110 class ANDROID_API PathInterpolator : public Interpolator {
112 explicit PathInterpolator(std::vector<float>&& x, std::vector<float>&& y) : mX(x), mY(y) {} in PathInterpolator() function
DInterpolator.cpp98 float PathInterpolator::interpolate(float t) { in interpolate()
/frameworks/layoutlib/bridge/src/com/android/internal/view/animation/
DNativeInterpolatorFactoryHelper_Delegate.java35 import android.view.animation.PathInterpolator;
105 return sManager.addNewDelegate(new PathInterpolator(path)); in createPathInterpolator()
/frameworks/base/packages/SystemUI/src/com/android/systemui/charging/
DWirelessChargingLayout.java26 import android.view.animation.PathInterpolator;
96 textSizeAnimator.setInterpolator(new PathInterpolator(0, 0, 0, 1)); in init()
/frameworks/base/core/java/com/android/internal/widget/
DMessagingPropertyAnimator.java26 import android.view.animation.PathInterpolator;
35 private 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);
DMessagingLayout.java41 import android.view.animation.PathInterpolator;
74 public static final Interpolator LINEAR_OUT_SLOW_IN = new PathInterpolator(0f, 0f, 0.2f, 1f);
75 public static final Interpolator FAST_OUT_LINEAR_IN = new PathInterpolator(0.4f, 0f, 1f, 1f);
76 public static final Interpolator FAST_OUT_SLOW_IN = new PathInterpolator(0.4f, 0f, 0.2f, 1f);
/frameworks/base/libs/hwui/tests/unit/
DPathInterpolatorTests.cpp83 PathInterpolator interpolator(getX(data), getY(data)); in TEST()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DActivatableNotificationView.java34 import android.view.animation.PathInterpolator;
93 = new PathInterpolator(0.6f, 0, 0.5f, 1);
95 = new PathInterpolator(0, 0, 0.5f, 1);
165 mSlowOutFastInInterpolator = new PathInterpolator(0.8f, 0.0f, 0.6f, 1.0f); in ActivatableNotificationView()
166 mSlowOutLinearInInterpolator = new PathInterpolator(0.8f, 0.0f, 1.0f, 1.0f); in ActivatableNotificationView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
DNotificationHeaderViewWrapper.java28 import android.view.animation.PathInterpolator;
51 = new PathInterpolator(0.4f, 0f, 0.7f, 1f);
/frameworks/base/core/jni/
Dcom_android_internal_view_animation_NativeInterpolatorFactoryHelper.cpp76 return reinterpret_cast<jlong>(new PathInterpolator(std::move(x), std::move(y))); in createPathInterpolator()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNavigationBarEdgePanel.java35 import android.view.animation.PathInterpolator;
104 = new PathInterpolator(1.0f / 5.0f, 1.0f, 1.0f, 1.0f);
115 = new PathInterpolator(1.0f / RUBBER_BAND_AMOUNT_APPEAR, 1.0f, 1.0f, 1.0f);
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DDividerView.java56 import android.view.animation.PathInterpolator;
102 private static final PathInterpolator SLOWDOWN_INTERPOLATOR =
103 new PathInterpolator(0.5f, 1f, 0.5f, 1f);
104 private static final PathInterpolator DIM_INTERPOLATOR =
105 new PathInterpolator(.23f, .87f, .52f, -0.11f);
107 new PathInterpolator(0.2f, 0f, 0.1f, 1f);
/frameworks/base/graphics/java/android/graphics/drawable/
DRippleForeground.java33 import android.view.animation.PathInterpolator;
44 new PathInterpolator(0.4f, 0f, 0.2f, 1f);
/frameworks/base/core/java/android/view/
DInsetsController.java43 import android.view.animation.PathInterpolator;
58 private static final Interpolator INTERPOLATOR = new PathInterpolator(0.4f, 0f, 0.2f, 1f);
/frameworks/base/services/core/java/com/android/server/wm/
DDockedStackDividerController.java54 import android.view.animation.PathInterpolator;
97 new PathInterpolator(0.2f, 0f, 0.1f, 1f);

12