Home
last modified time | relevance | path

Searched refs:TimeInterpolator (Results 1 – 25 of 41) sorted by relevance

12

/frameworks/base/core/java/com/android/internal/view/animation/
DFallbackLUTInterpolator.java19 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/
DTransitionConstants.java18 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);
DEpicenterTranslateClipReveal.java22 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/
DSystemUIInterpolators.java19 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/
DInterpolator.java19 import android.animation.TimeInterpolator;
26 public interface Interpolator extends TimeInterpolator {
/frameworks/base/core/java/android/animation/
DLayoutTransition.java203 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 …]
DIntKeyframeSet.java64 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getIntValue()
80 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getIntValue()
93 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getIntValue()
DFloatKeyframeSet.java64 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getFloatValue()
80 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getFloatValue()
94 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getFloatValue()
DKeyframe.java66 private TimeInterpolator mInterpolator = null;
231 public TimeInterpolator getInterpolator() { in getInterpolator()
241 public void setInterpolator(TimeInterpolator interpolator) { in setInterpolator()
DKeyframeSet.java40 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()
DTimeInterpolator.java23 public interface TimeInterpolator { interface
DAnimator.java218 public abstract void setInterpolator(TimeInterpolator value); in setInterpolator()
225 public TimeInterpolator getInterpolator() { in getInterpolator()
DValueAnimator.java139 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/
DRenderNodeAnimatorSetHelper.java18 import android.animation.TimeInterpolator;
40 public static long createNativeInterpolator(TimeInterpolator interpolator, long in createNativeInterpolator()
DRenderNodeAnimator.java20 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()
DViewPropertyAnimator.java20 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/
DRippleBackground.java20 import android.animation.TimeInterpolator;
32 private static final TimeInterpolator LINEAR_INTERPOLATOR = new LinearInterpolator();
DRippleForeground.java22 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/
DExplode.java19 import android.animation.TimeInterpolator;
41 private static final TimeInterpolator sDecelerate = new DecelerateInterpolator();
42 private static final TimeInterpolator sAccelerate = new AccelerateInterpolator();
DSlide.java19 import android.animation.TimeInterpolator;
46 private static final TimeInterpolator sDecelerate = new DecelerateInterpolator();
47 private static final TimeInterpolator sAccelerate = new AccelerateInterpolator();
DTranslationAnimationCreator.java21 import android.animation.TimeInterpolator;
52 float startX, float startY, float endX, float endY, TimeInterpolator interpolator, in createAnimation()
DTransitionSet.java19 import android.animation.TimeInterpolator;
241 public TransitionSet setInterpolator(TimeInterpolator interpolator) { in setInterpolator()
/frameworks/base/core/java/com/android/internal/widget/
DSwipeDismissLayout.java20 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()
DAbsActionBarView.java21 import android.animation.TimeInterpolator;
39 private static final TimeInterpolator sAlphaInterpolator = new DecelerateInterpolator();
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/
DTaskStackViewScroller.java22 import android.animation.TimeInterpolator;
267 void animateScroll(float newScroll, int duration, TimeInterpolator interpolator, in animateScroll()

12