Searched defs:getInterpolation (Results 1 - 25 of 25) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DTimeInterpolator.java37 float getInterpolation(float input); method in interface:TimeInterpolator
/frameworks/base/core/java/android/view/animation/
H A DAccelerateDecelerateInterpolator.java40 public float getInterpolation(float input) { method in class:AccelerateDecelerateInterpolator
H A DBounceInterpolator.java42 public float getInterpolation(float t) { method in class:BounceInterpolator
H A DLinearInterpolator.java38 public float getInterpolation(float input) { method in class:LinearInterpolator
H A DAccelerateInterpolator.java77 public float getInterpolation(float input) { method in class:AccelerateInterpolator
H A DAnticipateInterpolator.java68 public float getInterpolation(float t) { method in class:AnticipateInterpolator
H A DCycleInterpolator.java59 public float getInterpolation(float input) { method in class:CycleInterpolator
H A DDecelerateInterpolator.java69 public float getInterpolation(float input) { method in class:DecelerateInterpolator
H A DOvershootInterpolator.java69 public float getInterpolation(float t) { method in class:OvershootInterpolator
H A DAnticipateOvershootInterpolator.java94 public float getInterpolation(float t) { method in class:AnticipateOvershootInterpolator
H A DPathInterpolator.java198 * @see Interpolator#getInterpolation(float)
201 public float getInterpolation(float t) { method in class:PathInterpolator
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DBounceInterpolator.java29 public float getInterpolation(float t) { method in class:BounceInterpolator
/frameworks/base/core/java/com/android/internal/view/animation/
H A DFallbackLUTInterpolator.java53 values[i] = interpolator.getInterpolation(inValue);
72 public float getInterpolation(float input) { method in class:FallbackLUTInterpolator
73 return mSourceInterpolator.getInterpolation(input);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DLogDecelerateInterpolator.java39 public float getInterpolation(float t) { method in class:LogDecelerateInterpolator
/frameworks/support/v17/leanback/src/android/support/v17/leanback/animation/
H A DLogAccelerateInterpolator.java38 public float getInterpolation(float t) { method in class:LogAccelerateInterpolator
H A DLogDecelerateInterpolator.java39 public float getInterpolation(float t) { method in class:LogDecelerateInterpolator
/frameworks/support/v4/java/android/support/v4/widget/
H A DBakedBezierInterpolator.java64 public float getInterpolation(float input) { method in class:BakedBezierInterpolator
H A DMaterialProgressDrawable.java330 * START_CURVE_INTERPOLATOR.getInterpolation(interpolatedTime));
334 * END_CURVE_INTERPOLATOR.getInterpolation(interpolatedTime));
700 public float getInterpolation(float input) { method in class:MaterialProgressDrawable.EndCurveInterpolator
701 return super.getInterpolation(Math.max(0, (input - 0.5f) * 2.0f));
710 public float getInterpolation(float input) { method in class:MaterialProgressDrawable.StartCurveInterpolator
711 return super.getInterpolation(Math.min(1, input * 2.0f));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DFlingAnimationUtils.java271 public float getInterpolation(float input) { method in class:FlingAnimationUtils.InterpolatorInterpolator
272 float t = mCrossfader.getInterpolation(input);
273 return (1 - t) * mInterpolator1.getInterpolation(input)
274 + t * mInterpolator2.getInterpolation(input);
294 public float getInterpolation(float input) { method in class:FlingAnimationUtils.VelocityInterpolator
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonRipple.java361 public float getInterpolation(float input) { method in class:KeyButtonRipple.LogInterpolator
/frameworks/base/core/java/android/widget/
H A DScroller.java310 final float x = mInterpolator.getInterpolation(timePassed * mDurationReciprocal);
590 public float getInterpolation(float input) { method in class:Scroller.ViscousFluidInterpolator
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedStateListDrawable.java710 public float getInterpolation(float input) { method in class:AnimatedStateListDrawable.FrameInterpolator
H A DRipple.java575 public float getInterpolation(float input) { method in class:Ripple.LogInterpolator
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardWidgetPager.java483 public float getInterpolation(float input) { method in class:KeyguardWidgetPager.ZInterpolator
H A DPagedView.java1847 public float getInterpolation(float t) { method in class:PagedView.ScrollInterpolator
2438 mDragView.setAlpha(1f - mAlphaInterpolator.getInterpolation(t));
2555 public float getInterpolation(float t) {

Completed in 8226 milliseconds