Home
last modified time | relevance | path

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

12

/aosp14/frameworks/base/graphics/java/android/graphics/animation/
H A 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()
H A DNativeInterpolatorFactory.java19 import android.animation.TimeInterpolator;
34 public static long createNativeInterpolator(TimeInterpolator interpolator, long in createNativeInterpolator()
H A 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()
/aosp14/frameworks/base/core/java/com/android/internal/transition/
H A 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);
H A 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()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DSystemUIInterpolators.java19 import android.animation.TimeInterpolator;
22 public static final class LogDecelerateInterpolator implements TimeInterpolator {
50 public static final class LogAccelerateInterpolator implements TimeInterpolator {
/aosp14/frameworks/base/core/java/android/view/animation/
H A DInterpolator.java19 import android.animation.TimeInterpolator;
26 public interface Interpolator extends TimeInterpolator {
/aosp14/frameworks/base/core/java/android/animation/
H A 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;
210 private static TimeInterpolator sChangingInterpolator = DECEL_INTERPOLATOR;
215 private TimeInterpolator mAppearingInterpolator = sAppearingInterpolator;
216 private TimeInterpolator mDisappearingInterpolator = sDisappearingInterpolator;
219 private TimeInterpolator mChangingInterpolator = sChangingInterpolator;
594 public void setInterpolator(int transitionType, TimeInterpolator interpolator) { in setInterpolator()
[all …]
H A 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()
H A 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()
H A DKeyframe.java66 private TimeInterpolator mInterpolator = null;
231 public TimeInterpolator getInterpolator() { in getInterpolator()
241 public void setInterpolator(TimeInterpolator interpolator) { in setInterpolator()
H A 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()
H A DTimeInterpolator.java23 public interface TimeInterpolator { interface
H A 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()
H A DAnimator.java267 public abstract void setInterpolator(TimeInterpolator value); in setInterpolator()
274 public TimeInterpolator getInterpolator() { in getInterpolator()
/aosp14/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleBackground.java20 import android.animation.TimeInterpolator;
32 private static final TimeInterpolator LINEAR_INTERPOLATOR = new LinearInterpolator();
H A DRippleForeground.java22 import android.animation.TimeInterpolator;
41 private static final TimeInterpolator LINEAR_INTERPOLATOR = new LinearInterpolator();
43 private static final TimeInterpolator DECELERATE_INTERPOLATOR =
H A DRippleAnimationSession.java20 import android.animation.TimeInterpolator;
46 private static final TimeInterpolator LINEAR_INTERPOLATOR = new LinearInterpolator();
/aosp14/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
H A DTextAnimator.kt21 import android.animation.TimeInterpolator
270 interpolator: TimeInterpolator? = null,
355 interpolator: TimeInterpolator? = null,
/aosp14/frameworks/base/core/java/android/transition/
H A DExplode.java19 import android.animation.TimeInterpolator;
41 private static final TimeInterpolator sDecelerate = new DecelerateInterpolator();
42 private static final TimeInterpolator sAccelerate = new AccelerateInterpolator();
H A DSlide.java19 import android.animation.TimeInterpolator;
46 private static final TimeInterpolator sDecelerate = new DecelerateInterpolator();
47 private static final TimeInterpolator sAccelerate = new AccelerateInterpolator();
H A DTranslationAnimationCreator.java21 import android.animation.TimeInterpolator;
52 float startX, float startY, float endX, float endY, TimeInterpolator interpolator, in createAnimation()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/clipboardoverlay/
H A DClipboardOverlayView.java25 import android.animation.TimeInterpolator;
312 TimeInterpolator linearInterpolator = new LinearInterpolator(); in getEnterAnimation()
313 TimeInterpolator scaleInterpolator = new PathInterpolator(0, 0, 0, 1f); in getEnterAnimation()
389 TimeInterpolator linearInterpolator = new LinearInterpolator(); in getExitAnimation()
390 TimeInterpolator scaleInterpolator = new PathInterpolator(.3f, 0, 1f, 1f); in getExitAnimation()
/aosp14/frameworks/base/core/java/android/view/
H A 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()
/aosp14/frameworks/base/core/java/com/android/internal/widget/
H A DAbsActionBarView.java21 import android.animation.TimeInterpolator;
40 private static final TimeInterpolator sAlphaInterpolator = new DecelerateInterpolator();

12