/frameworks/base/graphics/java/android/graphics/animation/ |
D | FallbackLUTInterpolator.java | 19 import android.animation.TimeInterpolator; 32 public class FallbackLUTInterpolator implements NativeInterpolator, TimeInterpolator { 36 private TimeInterpolator mSourceInterpolator; 43 public FallbackLUTInterpolator(TimeInterpolator interpolator, long duration) { in FallbackLUTInterpolator() 48 private static float[] createLUT(TimeInterpolator interpolator, long duration) { in createLUT() 71 public static long createNativeInterpolator(TimeInterpolator interpolator, long duration) { in createNativeInterpolator()
|
D | NativeInterpolatorFactory.java | 19 import android.animation.TimeInterpolator; 34 public static long createNativeInterpolator(TimeInterpolator interpolator, long in createNativeInterpolator()
|
D | RenderNodeAnimator.java | 20 import android.animation.TimeInterpolator; 70 private TimeInterpolator mInterpolator; 146 static boolean isNativeInterpolator(TimeInterpolator interpolator) { in isNativeInterpolator() 344 public void setInterpolator(TimeInterpolator interpolator) { in setInterpolator() 350 public TimeInterpolator getInterpolator() { in getInterpolator()
|
/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 | 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 | 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 | 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 | ValueAnimator.java | 151 private static final TimeInterpolator sDefaultInterpolator = 253 private TimeInterpolator mInterpolator = sDefaultInterpolator; 1064 public void setInterpolator(TimeInterpolator value) { in setInterpolator() 1078 public TimeInterpolator getInterpolator() { in getInterpolator()
|
D | Animator.java | 268 public abstract void setInterpolator(TimeInterpolator value); in setInterpolator() 275 public TimeInterpolator getInterpolator() { in getInterpolator()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
D | TextAnimator.kt | 21 import android.animation.TimeInterpolator 277 interpolator: TimeInterpolator? = null, in draw() 290 interpolator: TimeInterpolator?, in draw() 385 interpolator: TimeInterpolator? = null, in setTextStyle()
|
/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 =
|
D | RippleAnimationSession.java | 20 import android.animation.TimeInterpolator; 46 private static final TimeInterpolator LINEAR_INTERPOLATOR = new LinearInterpolator();
|
/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()
|
/frameworks/base/core/java/android/view/ |
D | ViewPropertyAnimator.java | 20 import android.animation.TimeInterpolator; 91 private TimeInterpolator mInterpolator; 340 public @NonNull ViewPropertyAnimator setInterpolator(TimeInterpolator interpolator) { in setInterpolator() 351 public @Nullable TimeInterpolator getInterpolator() { in getInterpolator()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/clipboardoverlay/ |
D | ClipboardOverlayView.java | 27 import android.animation.TimeInterpolator; 370 TimeInterpolator linearInterpolator = new LinearInterpolator(); in getEnterAnimation() 371 TimeInterpolator scaleInterpolator = new PathInterpolator(0, 0, 0, 1f); in getEnterAnimation() 447 TimeInterpolator linearInterpolator = new LinearInterpolator(); in getExitAnimation() 448 TimeInterpolator scaleInterpolator = new PathInterpolator(.3f, 0, 1f, 1f); in getExitAnimation()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | AbsActionBarView.java | 21 import android.animation.TimeInterpolator; 40 private static final TimeInterpolator sAlphaInterpolator = new DecelerateInterpolator();
|