/aosp12/packages/apps/Launcher3/src/com/android/launcher3/anim/ |
H A D | Interpolators.java | 23 import android.view.animation.Interpolator; 35 public static final Interpolator LINEAR = new LinearInterpolator(); 60 public static final Interpolator EXAGGERATED_EASE; 62 public static final Interpolator INSTANT = t -> 1; 80 public static final Interpolator TOUCH_RESPONSE_INTERPOLATOR = 89 public static final Interpolator ZOOM_IN = new Interpolator() { 96 public static final Interpolator ZOOM_OUT = new Interpolator() { 117 public static final Interpolator SCROLL = new Interpolator() { 125 public static final Interpolator SCROLL_CUBIC = new Interpolator() { 151 public static Interpolator clampToProgress(Interpolator interpolator, float lowerBound, in clampToProgress() [all …]
|
/aosp12/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
H A D | Interpolators.java | 25 import android.view.animation.Interpolator; 43 public static final Interpolator EMPHASIZED = createEmphasizedInterpolator(); 69 public static final Interpolator STANDARD = new PathInterpolator( 113 public static final Interpolator LINEAR = new LinearInterpolator(); 121 public static final Interpolator FAST_OUT_SLOW_IN = LEGACY; 122 public static final Interpolator FAST_OUT_LINEAR_IN = LEGACY_ACCELERATE; 123 public static final Interpolator LINEAR_OUT_SLOW_IN = LEGACY_DECELERATE; 129 public static final Interpolator FAST_OUT_SLOW_IN_REVERSE = 143 public static final Interpolator BOUNCE = new BounceInterpolator(); 153 public static final Interpolator TOUCH_RESPONSE = [all …]
|
/aosp12/frameworks/base/libs/hwui/ |
H A D | Interpolator.h | 28 class Interpolator { 30 virtual ~Interpolator() {} in ~Interpolator() 34 static Interpolator* createDefaultInterpolator(); 37 Interpolator() {} in Interpolator() function 45 class AccelerateInterpolator : public Interpolator { 55 class AnticipateInterpolator : public Interpolator { 73 class BounceInterpolator : public Interpolator { 78 class CycleInterpolator : public Interpolator { 96 class LinearInterpolator : public Interpolator { 110 class PathInterpolator : public Interpolator { [all …]
|
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/animation/ |
H A D | Interpolators.java | 19 import android.view.animation.Interpolator; 28 public static final Interpolator LINEAR = new LinearInterpolator(); 33 public static final Interpolator ALPHA_IN = new PathInterpolator(0.4f, 0f, 1f, 1f); 38 public static final Interpolator ALPHA_OUT = new PathInterpolator(0f, 0f, 0.8f, 1f); 43 public static final Interpolator FAST_OUT_LINEAR_IN = new PathInterpolator(0.4f, 0f, 1f, 1f); 48 public static final Interpolator FAST_OUT_SLOW_IN = new PathInterpolator(0.4f, 0f, 0.2f, 1f); 53 public static final Interpolator LINEAR_OUT_SLOW_IN = new PathInterpolator(0f, 0f, 0.2f, 1f); 58 public static final Interpolator TOUCH_RESPONSE = new PathInterpolator(0.3f, 0f, 0.1f, 1f); 63 public static final Interpolator PANEL_CLOSE_ACCELERATED =
|
H A D | FlingAnimationUtils.java | 23 import android.view.animation.Interpolator; 174 Interpolator slowInInterpolator = getInterpolator(startGradient, velocityFactor); in getProperties() 196 private Interpolator getInterpolator(float startGradient, float velocityFactor) { in getInterpolator() 324 private static final class InterpolatorInterpolator implements Interpolator { 326 private Interpolator mInterpolator1; 327 private Interpolator mInterpolator2; 328 private Interpolator mCrossfader; 330 InterpolatorInterpolator(Interpolator interpolator1, Interpolator interpolator2, in InterpolatorInterpolator() 331 Interpolator crossfader) { in InterpolatorInterpolator() 348 private static final class VelocityInterpolator implements Interpolator { [all …]
|
/aosp12/packages/apps/Dialer/java/com/android/incallui/answer/impl/utils/ |
H A D | FlingAnimationUtils.java | 22 import android.view.animation.Interpolator; 38 private Interpolator linearOutSlowIn; 203 Interpolator mLinearOutFasterIn = new PathInterpolator(0, 0, LINEAR_OUT_FASTER_IN_X2, y2); in getDismissingProperties() 247 private static final class InterpolatorInterpolator implements Interpolator { 249 private Interpolator interpolator1; 250 private Interpolator interpolator2; 251 private Interpolator crossfader; 254 Interpolator interpolator1, Interpolator interpolator2, Interpolator crossfader) { in InterpolatorInterpolator() 269 private static final class VelocityInterpolator implements Interpolator { 290 Interpolator interpolator;
|
H A D | Interpolators.java | 19 import android.view.animation.Interpolator; 27 public static final Interpolator FAST_OUT_LINEAR_IN = new PathInterpolator(0.4f, 0f, 1f, 1f); 28 public static final Interpolator LINEAR_OUT_SLOW_IN = new PathInterpolator(0f, 0f, 0.2f, 1f); 29 public static final Interpolator FAST_OUT_SLOW_IN = new PathInterpolator(0.4f, 0f, 0.2f, 1f);
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/states/ |
H A D | StateAnimationConfig.java | 18 import android.view.animation.Interpolator; 86 protected final Interpolator[] mInterpolators = new Interpolator[ANIM_TYPES_COUNT]; 107 public Interpolator getInterpolator(@AnimType int animId, Interpolator fallback) { in getInterpolator() 114 public void setInterpolator(@AnimType int animId, Interpolator interpolator) { in setInterpolator()
|
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
H A D | CaptureAnimation.java | 22 import android.view.animation.Interpolator; 30 private static final Interpolator sZoomOutInterpolator = 32 private static final Interpolator sZoomInInterpolator = 34 private static final Interpolator sSlideInterpolator =
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | AnimationProperties.java | 24 import android.view.animation.Interpolator; 34 private ArrayMap<Property, Interpolator> mInterpolatorMap; 86 public Interpolator getCustomInterpolator(View child, Property property) { 92 ArrayMap<Property, Interpolator> map = iconAnimationProperties.mInterpolatorMap; 104 public AnimationProperties setCustomInterpolator(Property property, Interpolator interpolator) {
|
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/anim/ |
H A D | Animation.java | 19 import android.view.animation.Interpolator; 54 private Interpolator mInterpolator; 56 public void setInterpolator(Interpolator interpolator) { in setInterpolator() 85 Interpolator i = mInterpolator; in calculate()
|
/aosp12/packages/apps/Car/Notification/src/com/android/car/notification/headsup/animationhelper/ |
H A D | CarHeadsUpNotificationRightAnimationHelper.java | 24 import android.view.animation.Interpolator; 34 Interpolator interpolator = AnimationUtils.loadInterpolator( in getAnimateInAnimator() 37 Interpolator alphaInterpolator = AnimationUtils.loadInterpolator( in getAnimateInAnimator() 58 Interpolator interpolator = AnimationUtils.loadInterpolator( in getAnimateOutAnimator() 61 Interpolator alphaInterpolator = AnimationUtils.loadInterpolator( in getAnimateOutAnimator()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
H A D | QSExpansionPathInterpolator.kt | 19 import android.view.animation.Interpolator 28 val xInterpolator: Interpolator 31 val yInterpolator: Interpolator
|
H A D | TouchAnimator.java | 21 import android.view.animation.Interpolator; 40 private final Interpolator mInterpolator; 45 float startDelay, float endDelay, Interpolator interpolator, Listener listener) { in TouchAnimator() 129 private Interpolator mInterpolator; 186 public Builder setInterpolator(Interpolator intepolator) { in setInterpolator()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/ui/motion/ |
H A D | InterpolatorHelper.java | 22 import android.view.animation.Interpolator; 29 private static Interpolator LINEAR_OUT_SLOW_IN = null; 32 public static Interpolator getLinearOutSlowInInterpolator(final @Nonnull Context context) { in getLinearOutSlowInInterpolator()
|
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/ |
H A D | AppearAnimationUtils.java | 26 import android.view.animation.Interpolator; 37 private final Interpolator mInterpolator; 52 float delayScaleFactor, Interpolator interpolator) { in AppearAnimationUtils() 172 public Interpolator getInterpolator() { in getInterpolator() 182 boolean appearing, Interpolator interpolator, final Runnable endRunnable) { in createAnimation() 226 float endTranslationY, Interpolator interpolator) { in startTranslationYAnimation() 234 float endTranslationY, Interpolator interpolator, Animator.AnimatorListener listener) { in startTranslationYAnimation()
|
H A D | DisappearAnimationUtils.java | 21 import android.view.animation.Interpolator; 35 float delayScaleFactor, Interpolator interpolator) { in DisappearAnimationUtils() 41 float delayScaleFactor, Interpolator interpolator, RowTranslationScaler rowScaler) { in DisappearAnimationUtils()
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/ |
H A D | WorkspaceStateTransitionAnimation.java | 46 import android.view.animation.Interpolator; 108 Interpolator fadeInterpolator = config.getInterpolator(ANIM_WORKSPACE_FADE, in setWorkspaceProperty() 111 Interpolator scaleInterpolator = config.getInterpolator(ANIM_WORKSPACE_SCALE, ZOOM_OUT); in setWorkspaceProperty() 129 Interpolator hotseatScaleInterpolator = config.getInterpolator(ANIM_HOTSEAT_SCALE, in setWorkspaceProperty() 141 Interpolator translationInterpolator = in setWorkspaceProperty() 148 Interpolator hotseatTranslationInterpolator = config.getInterpolator( in setWorkspaceProperty() 188 Interpolator fadeInterpolator = config.getInterpolator(ANIM_WORKSPACE_FADE, in applyChildState()
|
/aosp12/packages/apps/Dialer/java/com/android/dialer/animation/ |
H A D | AnimUtils.java | 24 import android.view.animation.Interpolator; 32 public static final Interpolator EASE_IN = new PathInterpolator(0.0f, 0.0f, 0.2f, 1.0f); 33 public static final Interpolator EASE_OUT = new PathInterpolator(0.4f, 0.0f, 1.0f, 1.0f); 34 public static final Interpolator EASE_OUT_EASE_IN = new PathInterpolator(0.4f, 0, 0.2f, 1); 189 Interpolator interpolator) { in scaleInternal()
|
/aosp12/frameworks/base/core/java/android/view/ |
H A D | WindowInsetsAnimation.java | 25 import android.view.animation.Interpolator; 40 private final Interpolator mInterpolator; 56 @WindowInsets.Type.InsetsType int typeMask, @Nullable Interpolator interpolator, in WindowInsetsAnimation() 130 public Interpolator getInterpolator() { in getInterpolator()
|
/aosp12/frameworks/layoutlib/bridge/src/android/graphics/animation/ |
H A D | NativeInterpolatorFactory_Delegate.java | 32 import android.view.animation.Interpolator; 46 private static final DelegateManager<Interpolator> sManager = new DelegateManager<> 47 (Interpolator.class); 49 public static Interpolator getDelegate(long nativePtr) { in getDelegate()
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/ |
H A D | MultiValueUpdateListener.java | 19 import android.view.animation.Interpolator; 60 private final Interpolator mInterpolator; 62 public FloatProp(float start, float end, float delay, float duration, Interpolator i) { in FloatProp()
|
/aosp12/packages/apps/PhoneCommon/src/com/android/phone/common/animation/ |
H A D | AnimUtils.java | 24 import android.view.animation.Interpolator; 34 public static final Interpolator EASE_IN = PathInterpolatorCompat.create( 36 public static final Interpolator EASE_OUT = PathInterpolatorCompat.create( 38 public static final Interpolator EASE_OUT_EASE_IN = PathInterpolatorCompat.create( 172 Interpolator interpolator) { in scaleInternal()
|
/aosp12/frameworks/base/core/java/com/android/internal/widget/ |
H A D | MessagingPropertyAnimator.java | 25 import android.view.animation.Interpolator; 35 public static final Interpolator ALPHA_IN = new PathInterpolator(0.4f, 0f, 1f, 1f); 36 public static final Interpolator ALPHA_OUT = new PathInterpolator(0f, 0f, 0.8f, 1f); 104 Interpolator interpolator) { in startLocalTranslationFrom() 115 Interpolator interpolator) { in startLocalTranslationTo() 141 Interpolator interpolator) { in startTopAnimation()
|
/aosp12/frameworks/base/core/java/com/android/internal/policy/ |
H A D | ClipRectTBAnimation.java | 21 import android.view.animation.Interpolator; 35 private final Interpolator mTranslateInterpolator; 42 int fromTranslateY, int toTranslateY, Interpolator translateInterpolator) { in ClipRectTBAnimation()
|