Home
last modified time | relevance | path

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

12

/frameworks/base/graphics/java/android/graphics/animation/
DFallbackLUTInterpolator.java19 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()
DNativeInterpolatorFactory.java19 import android.animation.TimeInterpolator;
34 public static long createNativeInterpolator(TimeInterpolator interpolator, long in createNativeInterpolator()
DRenderNodeAnimator.java20 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/
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 …]
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()
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()
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
DValueAnimator.java151 private static final TimeInterpolator sDefaultInterpolator =
253 private TimeInterpolator mInterpolator = sDefaultInterpolator;
1064 public void setInterpolator(TimeInterpolator value) { in setInterpolator()
1078 public TimeInterpolator getInterpolator() { in getInterpolator()
DAnimator.java268 public abstract void setInterpolator(TimeInterpolator value); in setInterpolator()
275 public TimeInterpolator getInterpolator() { in getInterpolator()
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DTextAnimator.kt21 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/
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 =
DRippleAnimationSession.java20 import android.animation.TimeInterpolator;
46 private static final TimeInterpolator LINEAR_INTERPOLATOR = new LinearInterpolator();
/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()
/frameworks/base/core/java/android/view/
DViewPropertyAnimator.java20 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/
DClipboardOverlayView.java27 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/
DAbsActionBarView.java21 import android.animation.TimeInterpolator;
40 private static final TimeInterpolator sAlphaInterpolator = new DecelerateInterpolator();

12