/frameworks/base/core/java/com/android/internal/view/animation/ |
D | FallbackLUTInterpolator.java | 19 import android.animation.TimeInterpolator; 31 public class FallbackLUTInterpolator implements NativeInterpolatorFactory, TimeInterpolator { 35 private TimeInterpolator mSourceInterpolator; 42 public FallbackLUTInterpolator(TimeInterpolator interpolator, long duration) { in FallbackLUTInterpolator() 47 private static float[] createLUT(TimeInterpolator interpolator, long duration) { in createLUT() 70 public static long createNativeInterpolator(TimeInterpolator interpolator, long duration) { in createNativeInterpolator()
|
/frameworks/base/core/java/com/android/internal/transition/ |
D | TransitionConstants.java | 18 import android.animation.TimeInterpolator; 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);
|
D | EpicenterTranslateClipReveal.java | 22 import android.animation.TimeInterpolator; 50 private final TimeInterpolator mInterpolatorX; 51 private final TimeInterpolator mInterpolatorY; 52 private final TimeInterpolator mInterpolatorZ; 212 TimeInterpolator interpolatorX, TimeInterpolator interpolatorY, in createRectAnimator() 213 TimeInterpolator interpolatorZ) { in createRectAnimator()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
D | SystemUIInterpolators.java | 19 import android.animation.TimeInterpolator; 22 public static final class LogDecelerateInterpolator implements TimeInterpolator { 50 public static final class LogAccelerateInterpolator implements TimeInterpolator {
|
/frameworks/base/core/java/android/view/animation/ |
D | Interpolator.java | 19 import android.animation.TimeInterpolator; 26 public interface Interpolator extends TimeInterpolator {
|
/frameworks/base/core/java/android/animation/ |
D | LayoutTransition.java | 203 private static TimeInterpolator ACCEL_DECEL_INTERPOLATOR = 205 private static TimeInterpolator DECEL_INTERPOLATOR = new DecelerateInterpolator(); 206 private static TimeInterpolator sAppearingInterpolator = ACCEL_DECEL_INTERPOLATOR; 207 private static TimeInterpolator sDisappearingInterpolator = ACCEL_DECEL_INTERPOLATOR; 208 private static TimeInterpolator sChangingAppearingInterpolator = DECEL_INTERPOLATOR; 209 private static TimeInterpolator sChangingDisappearingInterpolator = DECEL_INTERPOLATOR; 210 private static TimeInterpolator sChangingInterpolator = DECEL_INTERPOLATOR; 215 private TimeInterpolator mAppearingInterpolator = sAppearingInterpolator; 216 private TimeInterpolator mDisappearingInterpolator = sDisappearingInterpolator; 217 private TimeInterpolator mChangingAppearingInterpolator = sChangingAppearingInterpolator; [all …]
|
D | IntKeyframeSet.java | 64 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getIntValue() 80 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getIntValue() 93 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getIntValue()
|
D | FloatKeyframeSet.java | 64 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getFloatValue() 80 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getFloatValue() 94 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getFloatValue()
|
D | Keyframe.java | 66 private TimeInterpolator mInterpolator = null; 231 public TimeInterpolator getInterpolator() { in getInterpolator() 241 public void setInterpolator(TimeInterpolator interpolator) { in setInterpolator()
|
D | KeyframeSet.java | 40 TimeInterpolator mInterpolator; // only used in the 2-keyframe case 207 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getValue() 218 final TimeInterpolator interpolator = mLastKeyframe.getInterpolator(); in getValue() 232 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getValue()
|
D | TimeInterpolator.java | 23 public interface TimeInterpolator { interface
|
D | Animator.java | 218 public abstract void setInterpolator(TimeInterpolator value); in setInterpolator() 225 public TimeInterpolator getInterpolator() { in getInterpolator()
|
D | ValueAnimator.java | 139 private static final TimeInterpolator sDefaultInterpolator = 248 private TimeInterpolator mInterpolator = sDefaultInterpolator; 979 public void setInterpolator(TimeInterpolator value) { in setInterpolator() 993 public TimeInterpolator getInterpolator() { in getInterpolator()
|
/frameworks/base/core/java/android/view/ |
D | RenderNodeAnimatorSetHelper.java | 18 import android.animation.TimeInterpolator; 40 public static long createNativeInterpolator(TimeInterpolator interpolator, long in createNativeInterpolator()
|
D | RenderNodeAnimator.java | 20 import android.animation.TimeInterpolator; 93 private TimeInterpolator mInterpolator; 166 static boolean isNativeInterpolator(TimeInterpolator interpolator) { in isNativeInterpolator() 373 public void setInterpolator(TimeInterpolator interpolator) { in setInterpolator() 379 public TimeInterpolator getInterpolator() { in getInterpolator()
|
D | ViewPropertyAnimator.java | 20 import android.animation.TimeInterpolator; 88 private TimeInterpolator mInterpolator; 337 public ViewPropertyAnimator setInterpolator(TimeInterpolator interpolator) { in setInterpolator() 348 public TimeInterpolator getInterpolator() { in getInterpolator()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | RippleBackground.java | 20 import android.animation.TimeInterpolator; 32 private static final TimeInterpolator LINEAR_INTERPOLATOR = new LinearInterpolator();
|
D | RippleForeground.java | 22 import android.animation.TimeInterpolator; 41 private static final TimeInterpolator LINEAR_INTERPOLATOR = new LinearInterpolator(); 43 private static final TimeInterpolator DECELERATE_INTERPOLATOR =
|
/frameworks/base/core/java/android/transition/ |
D | Explode.java | 19 import android.animation.TimeInterpolator; 41 private static final TimeInterpolator sDecelerate = new DecelerateInterpolator(); 42 private static final TimeInterpolator sAccelerate = new AccelerateInterpolator();
|
D | Slide.java | 19 import android.animation.TimeInterpolator; 46 private static final TimeInterpolator sDecelerate = new DecelerateInterpolator(); 47 private static final TimeInterpolator sAccelerate = new AccelerateInterpolator();
|
D | TranslationAnimationCreator.java | 21 import android.animation.TimeInterpolator; 52 float startX, float startY, float endX, float endY, TimeInterpolator interpolator, in createAnimation()
|
D | TransitionSet.java | 19 import android.animation.TimeInterpolator; 241 public TransitionSet setInterpolator(TimeInterpolator interpolator) { in setInterpolator()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | SwipeDismissLayout.java | 20 import android.animation.TimeInterpolator; 441 private final TimeInterpolator DISMISS_INTERPOLATOR = new DecelerateInterpolator(1.5f); 475 private void animate(float from, float to, long duration, TimeInterpolator interpolator, in animate()
|
D | AbsActionBarView.java | 21 import android.animation.TimeInterpolator; 39 private static final TimeInterpolator sAlphaInterpolator = new DecelerateInterpolator();
|
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/ |
D | TaskStackViewScroller.java | 22 import android.animation.TimeInterpolator; 267 void animateScroll(float newScroll, int duration, TimeInterpolator interpolator, in animateScroll()
|