HomeSort by relevance Sort by last modified time
    Searched defs:LINEAR_OUT_SLOW_IN (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/com/android/internal/transition/
TransitionConstants.java 22 static final TimeInterpolator LINEAR_OUT_SLOW_IN = new PathInterpolator(0, 0, 0.2f, 1);
  /packages/apps/Camera2/src/com/android/camera/ui/motion/
InterpolatorHelper.java 29 private static Interpolator LINEAR_OUT_SLOW_IN = null;
33 if (LINEAR_OUT_SLOW_IN != null) {
34 return LINEAR_OUT_SLOW_IN;
38 LINEAR_OUT_SLOW_IN = AnimationUtils.loadInterpolator(
39 context, android.R.interpolator.linear_out_slow_in);
41 LINEAR_OUT_SLOW_IN = new DecelerateInterpolator();
43 return LINEAR_OUT_SLOW_IN;
UnitCurves.java 24 public static final UnitCurve LINEAR_OUT_SLOW_IN = new UnitBezier(0.0f, 0.0f, 0.2f, 1.0f);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
Interpolators.java 32 public static final Interpolator LINEAR_OUT_SLOW_IN = new PathInterpolator(0f, 0f, 0.2f, 1f);
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
QuantumInterpolator.java 56 public static final float[] LINEAR_OUT_SLOW_IN = new float[] {

Completed in 276 milliseconds