/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | Interpolators.java | 23 import android.view.animation.Interpolator; 33 public static final Interpolator FAST_OUT_SLOW_IN = new PathInterpolator(0.4f, 0f, 0.2f, 1f); 39 public static final Interpolator FAST_OUT_SLOW_IN_REVERSE = 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); 45 public static final Interpolator LINEAR = new LinearInterpolator(); 46 public static final Interpolator ACCELERATE = new AccelerateInterpolator(); 47 public static final Interpolator ACCELERATE_DECELERATE = new AccelerateDecelerateInterpolator(); [all …]
|
/frameworks/base/libs/hwui/ |
D | Interpolator.h | 28 class Interpolator { 30 virtual ~Interpolator() {} in ~Interpolator() 34 static Interpolator* createDefaultInterpolator(); 37 Interpolator() {} in Interpolator() function 40 class ANDROID_API AccelerateDecelerateInterpolator : public Interpolator { 45 class ANDROID_API AccelerateInterpolator : public Interpolator { 55 class ANDROID_API AnticipateInterpolator : public Interpolator { 64 class ANDROID_API AnticipateOvershootInterpolator : public Interpolator { 73 class ANDROID_API BounceInterpolator : public Interpolator { 78 class ANDROID_API CycleInterpolator : public Interpolator { [all …]
|
D | PropertyValuesAnimatorSet.h | 28 PropertyAnimator(PropertyValuesHolder* holder, Interpolator* interpolator, nsecs_t startDelay, 37 std::unique_ptr<Interpolator> mInterpolator; 58 Interpolator* interpolators, int64_t startDelays, nsecs_t durations,
|
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/utilities/ |
D | AnimationProps.java | 26 import android.view.animation.Interpolator; 39 private static final Interpolator LINEAR_INTERPOLATOR = new LinearInterpolator(); 57 private SparseArray<Interpolator> mPropInterpolators; 69 public AnimationProps(int duration, Interpolator interpolator) { in AnimationProps() 77 public AnimationProps(int duration, Interpolator interpolator, in AnimationProps() 86 public AnimationProps(int startDelay, int duration, Interpolator interpolator) { in AnimationProps() 94 public AnimationProps(int startDelay, int duration, Interpolator interpolator, in AnimationProps() 179 public AnimationProps setInterpolator(@PropType int propertyType, Interpolator interpolator) { in setInterpolator() 191 public Interpolator getInterpolator(@PropType int propertyType) { in getInterpolator() 193 Interpolator interp = mPropInterpolators.get(propertyType); in getInterpolator()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | FlingAnimationUtils.java | 23 import android.view.animation.Interpolator; 177 Interpolator slowInInterpolator = getInterpolator(startGradient, velocityFactor); in getProperties() 199 private Interpolator getInterpolator(float startGradient, float velocityFactor) { in getInterpolator() 272 Interpolator mLinearOutFasterIn = new PathInterpolator(0, 0, LINEAR_OUT_FASTER_IN_X2, y2); in getDismissingProperties() 320 private static final class InterpolatorInterpolator implements Interpolator { 322 private Interpolator mInterpolator1; 323 private Interpolator mInterpolator2; 324 private Interpolator mCrossfader; 326 InterpolatorInterpolator(Interpolator interpolator1, Interpolator interpolator2, in InterpolatorInterpolator() 327 Interpolator crossfader) { in InterpolatorInterpolator() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | AnimationProperties.java | 23 import android.view.animation.Interpolator; 31 private ArrayMap<Property, Interpolator> mInterpolatorMap; 65 public Interpolator getCustomInterpolator(View child, Property property) { 71 ArrayMap<Property, Interpolator> map = iconAnimationProperties.mInterpolatorMap; 83 public AnimationProperties setCustomInterpolator(Property property, Interpolator interpolator) {
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/ |
D | DisappearAnimationUtils.java | 21 import android.view.animation.Interpolator; 35 float delayScaleFactor, Interpolator interpolator) { in DisappearAnimationUtils() 41 float delayScaleFactor, Interpolator interpolator, RowTranslationScaler rowScaler) { in DisappearAnimationUtils()
|
D | AppearAnimationCreator.java | 19 import android.view.animation.Interpolator; 27 float translationY, boolean appearing, Interpolator interpolator, in createAnimation()
|
D | AppearAnimationUtils.java | 26 import android.view.animation.Interpolator; 37 private final Interpolator mInterpolator; 52 float delayScaleFactor, Interpolator interpolator) { in AppearAnimationUtils() 172 public Interpolator getInterpolator() { in getInterpolator() 182 boolean appearing, Interpolator interpolator, final Runnable endRunnable) { in createAnimation() 223 float endTranslationY, Interpolator interpolator) { in startTranslationYAnimation()
|
/frameworks/base/services/core/java/com/android/server/wm/animation/ |
D | ClipRectTBAnimation.java | 21 import android.view.animation.Interpolator; 36 private final Interpolator mTranslateInterpolator; 43 int fromTranslateY, int toTranslateY, Interpolator translateInterpolator) { in ClipRectTBAnimation()
|
/frameworks/layoutlib/bridge/src/com/android/internal/view/animation/ |
D | NativeInterpolatorFactoryHelper_Delegate.java | 32 import android.view.animation.Interpolator; 46 private static final DelegateManager<Interpolator> sManager = new DelegateManager<> 47 (Interpolator.class); 49 public static Interpolator getDelegate(long nativePtr) { in getDelegate()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | BounceInterpolator.java | 19 import android.view.animation.Interpolator; 24 public class BounceInterpolator implements Interpolator {
|
/frameworks/base/services/core/java/com/android/server/policy/ |
D | LogDecelerateInterpolator.java | 19 import android.view.animation.Interpolator; 21 public class LogDecelerateInterpolator implements Interpolator {
|
/frameworks/base/graphics/java/android/graphics/ |
D | Interpolator.java | 21 public class Interpolator { class 23 public Interpolator(int valueCount) { in Interpolator() method in Interpolator 29 public Interpolator(int valueCount, int frameCount) { in Interpolator() method in Interpolator
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | MessagingPropertyAnimator.java | 25 import android.view.animation.Interpolator; 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); 104 Interpolator interpolator) { in startLocalTranslationFrom() 115 Interpolator interpolator) { in startLocalTranslationTo() 141 Interpolator interpolator) { in startTopAnimation()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | TouchAnimator.java | 21 import android.view.animation.Interpolator; 40 private final Interpolator mInterpolator; 45 float startDelay, float endDelay, Interpolator interpolator, Listener listener) { in TouchAnimator() 128 private Interpolator mInterpolator; 185 public Builder setInterpolator(Interpolator intepolator) { in setInterpolator()
|
D | PathInterpolatorBuilder.java | 19 import android.view.animation.Interpolator; 102 public Interpolator getXInterpolator() { in getXInterpolator() 106 public Interpolator getYInterpolator() { in getYInterpolator()
|
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/ |
D | TaskStackAnimationHelper.java | 26 import android.view.animation.Interpolator; 88 private static final Interpolator ENTER_FROM_HOME_ALPHA_INTERPOLATOR = Interpolators.LINEAR; 91 private static final Interpolator EXIT_TO_HOME_TRANSLATION_INTERPOLATOR = 96 private static final Interpolator DISMISS_ALL_TRANSLATION_INTERPOLATOR = 99 private static final Interpolator FOCUS_NEXT_TASK_INTERPOLATOR = 101 private static final Interpolator FOCUS_IN_FRONT_NEXT_TASK_INTERPOLATOR = 103 private static final Interpolator FOCUS_BEHIND_NEXT_TASK_INTERPOLATOR = 106 private static final Interpolator ENTER_WHILE_DOCKING_INTERPOLATOR = 507 Interpolator interpolator; in startScrollToFocusedTaskAnimation() 611 Interpolator interpolator = FOCUS_BEHIND_NEXT_TASK_INTERPOLATOR; in startNewStackScrollAnimation()
|
/frameworks/base/core/java/android/view/animation/ |
D | LayoutAnimationController.java | 89 protected Interpolator mInterpolator; 245 public void setInterpolator(Interpolator interpolator) { in setInterpolator() 255 public Interpolator getInterpolator() { in getInterpolator()
|
/frameworks/base/tests/Assist/src/com/android/test/assist/ |
D | AssistInteractionSession.java | 32 import android.view.animation.Interpolator; 120 Interpolator linearOutSlowIn = AnimationUtils.loadInterpolator(mBackground.getContext(), in playAssistAnimation() 122 Interpolator fastOutSlowIn = AnimationUtils.loadInterpolator(mBackground.getContext(), in playAssistAnimation()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | PropertyAnimator.java | 25 import android.view.animation.Interpolator; 88 Interpolator customInterpolator = properties.getCustomInterpolator(view, property); in startAnimation() 89 Interpolator interpolator = customInterpolator != null ? customInterpolator in startAnimation()
|
D | TransformState.java | 21 import android.view.animation.Interpolator; 81 protected Interpolator mDefaultInterpolator = Interpolators.FAST_OUT_SLOW_IN; 201 Interpolator customInterpolator = in transformViewFrom() 214 Interpolator customInterpolator = in transformViewFrom() 345 Interpolator customInterpolator = in transformViewTo() 362 Interpolator customInterpolator = in transformViewTo() 582 public void setDefaultInterpolator(Interpolator interpolator) { in setDefaultInterpolator()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/ |
D | AssistOrbView.java | 30 import android.view.animation.Interpolator; 46 private final Interpolator mOvershootInterpolator = new OvershootInterpolator(); 152 long startDelay, Interpolator interpolator) { in animateCircleSize() 192 Interpolator interpolator) { in animateOffset()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ActivatableNotificationView.java | 33 import android.view.animation.Interpolator; 98 private static final Interpolator ACTIVATE_INVERSE_INTERPOLATOR 100 private static final Interpolator ACTIVATE_INVERSE_ALPHA_INTERPOLATOR 121 private final Interpolator mSlowOutFastInInterpolator; 122 private final Interpolator mSlowOutLinearInInterpolator; 123 private Interpolator mCurrentAppearInterpolator; 124 private Interpolator mCurrentAlphaInterpolator; 365 Interpolator interpolator; in startActivateAnimation() 366 Interpolator alphaInterpolator; in startActivateAnimation()
|
/frameworks/base/core/java/android/widget/ |
D | Scroller.java | 25 import android.view.animation.Interpolator; 65 private final Interpolator mInterpolator; 166 public Scroller(Context context, Interpolator interpolator) { in Scroller() 176 public Scroller(Context context, Interpolator interpolator, boolean flywheel) { in Scroller() 568 static class ViscousFluidInterpolator implements Interpolator {
|