/aosp12/frameworks/base/graphics/java/android/graphics/animation/ |
H A 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()
|
H A D | NativeInterpolatorFactory.java | 19 import android.animation.TimeInterpolator; 34 public static long createNativeInterpolator(TimeInterpolator interpolator, long in createNativeInterpolator()
|
H A 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()
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/anim/ |
H A D | PropertySetter.java | 20 import android.animation.TimeInterpolator; 37 default void setViewAlpha(View view, float alpha, TimeInterpolator interpolator) { in setViewAlpha() 47 default void setViewBackgroundColor(View view, int color, TimeInterpolator interpolator) { in setViewBackgroundColor() 57 TimeInterpolator interpolator) { in setFloat() 65 TimeInterpolator interpolator) { in setInt()
|
H A D | PendingAnimation.java | 25 import android.animation.TimeInterpolator; 66 public void add(Animator anim, TimeInterpolator interpolator, SpringProperty springProperty) { in add() 81 public void setViewAlpha(View view, float alpha, TimeInterpolator interpolator) { in setViewAlpha() 92 public void setViewBackgroundColor(View view, int color, TimeInterpolator interpolator) { in setViewBackgroundColor() 104 TimeInterpolator interpolator) { in setFloat() 114 TimeInterpolator interpolator) { in addFloat() 122 TimeInterpolator interpolator) { in setInt()
|
H A D | AnimatorPlaybackController.java | 28 import android.animation.TimeInterpolator; 114 public TimeInterpolator getInterpolator() { in getInterpolator() 296 public void dispatchSetInterpolator(TimeInterpolator interpolator) { in dispatchSetInterpolator() 371 public final TimeInterpolator interpolator; 398 TimeInterpolator forceInterpolator = anim.getInterpolator(); in addAnimationHoldersRecur()
|
/aosp12/frameworks/base/core/java/com/android/internal/transition/ |
H A 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);
|
H A 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()
|
/aosp12/packages/apps/TV/src/com/android/tv/ui/ |
H A D | FullscreenDialogView.java | 19 import android.animation.TimeInterpolator; 47 private final TimeInterpolator mLinearOutSlowIn; 48 private final TimeInterpolator mFastOutLinearIn; 121 protected void onStartEnterAnimation(TimeInterpolator interpolator, long duration) {} in onStartEnterAnimation() 125 TimeInterpolator interpolator, long duration, Runnable onAnimationEnded) {} in onStartExitAnimation()
|
H A D | IntroView.java | 19 import android.animation.TimeInterpolator; 85 protected void onStartEnterAnimation(TimeInterpolator interpolator, long duration) { in onStartEnterAnimation() 98 TimeInterpolator interpolator, long duration, final Runnable onAnimationEnded) { in onStartExitAnimation()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
H A D | SystemUIInterpolators.java | 19 import android.animation.TimeInterpolator; 22 public static final class LogDecelerateInterpolator implements TimeInterpolator { 50 public static final class LogAccelerateInterpolator implements TimeInterpolator {
|
/aosp12/frameworks/base/core/java/android/animation/ |
H A 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; 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 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()
|
H A 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()
|
H A D | Keyframe.java | 66 private TimeInterpolator mInterpolator = null; 231 public TimeInterpolator getInterpolator() { in getInterpolator() 241 public void setInterpolator(TimeInterpolator interpolator) { in setInterpolator()
|
H A 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()
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/ |
H A D | TaskbarEduController.java | 30 import android.animation.TimeInterpolator; 55 private static final TimeInterpolator WAVE_ANIM_TO_TOP_INTERPOLATOR = FAST_OUT_SLOW_IN; 56 private static final TimeInterpolator WAVE_ANIM_TO_BOTTOM_INTERPOLATOR = ACCEL_2; 57 private static final TimeInterpolator WAVE_ANIM_OVERSHOOT_INTERPOLATOR = DEACCEL; 58 private static final TimeInterpolator WAVE_ANIM_OVERSHOOT_RETURN_INTERPOLATOR = ACCEL_DEACCEL;
|
/aosp12/frameworks/base/core/java/android/view/animation/ |
H A D | Interpolator.java | 19 import android.animation.TimeInterpolator; 26 public interface Interpolator extends TimeInterpolator {
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/util/ |
H A D | FlingAnimation.java | 6 import android.animation.TimeInterpolator; 36 protected final TimeInterpolator mAlphaInterpolator = new DecelerateInterpolator(0.75f); 83 final TimeInterpolator tInterpolator = new TimeInterpolator() { in run()
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/ |
H A D | LogAccelerateInterpolator.java | 3 import android.animation.TimeInterpolator; 5 public class LogAccelerateInterpolator implements TimeInterpolator {
|
H A D | LogDecelerateInterpolator.java | 3 import android.animation.TimeInterpolator; 5 public class LogDecelerateInterpolator implements TimeInterpolator {
|
/aosp12/packages/apps/Camera2/src/com/android/camera/util/ |
H A D | Gusterpolator.java | 19 import android.animation.TimeInterpolator; 26 public class Gusterpolator implements TimeInterpolator {
|
/aosp12/packages/modules/Permission/PermissionController/src/android/support/wearable/view/ |
H A D | Gusterpolator.java | 19 import android.animation.TimeInterpolator; 28 class Gusterpolator implements TimeInterpolator {
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/ |
H A D | AnimatorControllerWithResistance.java | 23 import android.animation.TimeInterpolator; 86 private static final TimeInterpolator RECENTS_SCALE_RESIST_INTERPOLATOR = DEACCEL; 87 private static final TimeInterpolator RECENTS_TRANSLATE_RESIST_INTERPOLATOR = LINEAR; 196 final TimeInterpolator scaleInterpolator = t -> { in createRecentsResistanceAnim()
|
/aosp12/frameworks/base/core/java/android/transition/ |
H A D | Explode.java | 19 import android.animation.TimeInterpolator; 41 private static final TimeInterpolator sDecelerate = new DecelerateInterpolator(); 42 private static final TimeInterpolator sAccelerate = new AccelerateInterpolator();
|