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

123

/frameworks/base/core/java/android/animation/
H A DTimeInterpolator.java37 float getInterpolation(float input); method in interface:TimeInterpolator
H A DFloatKeyframeSet.java75 fraction = mInterpolator.getInterpolation(fraction);
92 fraction = interpolator.getInterpolation(fraction);
108 fraction = interpolator.getInterpolation(fraction);
122 fraction = interpolator.getInterpolation(fraction);
H A DIntKeyframeSet.java75 fraction = mInterpolator.getInterpolation(fraction);
92 fraction = interpolator.getInterpolation(fraction);
108 fraction = interpolator.getInterpolation(fraction);
121 fraction = interpolator.getInterpolation(fraction);
H A DKeyframeSet.java207 fraction = mInterpolator.getInterpolation(fraction);
216 fraction = interpolator.getInterpolation(fraction);
227 fraction = interpolator.getInterpolation(fraction);
241 fraction = interpolator.getInterpolation(fraction);
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DEase.java28 public float getInterpolation(float input) {
36 public float getInterpolation(float input) {
41 public float getInterpolation(float input) {
46 public float getInterpolation(float input) {
56 public float getInterpolation (float input) {
61 public float getInterpolation(float input) {
66 public float getInterpolation(float input) {
76 public float getInterpolation(float input) {
81 public float getInterpolation(float input) {
86 public float getInterpolation(floa
[all...]
/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/core/java/android/view/animation/
H A DAccelerateDecelerateInterpolator.java40 public float getInterpolation(float input) { method in class:AccelerateDecelerateInterpolator
H A DLinearInterpolator.java39 public float getInterpolation(float input) { method in class:LinearInterpolator
H A DBounceInterpolator.java42 public float getInterpolation(float t) { method in class:BounceInterpolator
H A DAccelerateInterpolator.java77 public float getInterpolation(float input) { method in class:AccelerateInterpolator
H A DAnticipateInterpolator.java69 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.java70 public float getInterpolation(float t) { method in class:OvershootInterpolator
H A DAnticipateOvershootInterpolator.java93 public float getInterpolation(float t) { method in class:AnticipateOvershootInterpolator
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DBounceInterpolator.java29 public float getInterpolation(float t) { method in class:BounceInterpolator
H A DKeyguardClockPositionAlgorithm.java121 progress = mAccelerateInterpolator.getInterpolation(progress);
146 float slowedDownValue = -sSlowDownInterpolator.getInterpolation(t) * SLOW_DOWN_FACTOR
/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/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/Keyguard/src/com/android/keyguard/
H A DKeyguardWidgetCarousel.java209 public float getInterpolation(float input) {
210 return mInternal.getInterpolation(Math.min(mFactor * input, 1f));
218 public float getInterpolation(float input) {
221 return mInternal.getInterpolation(input);
/frameworks/support/v4/java/android/support/v4/widget/
H A DBakedBezierInterpolator.java64 public float getInterpolation(float input) { method in class:BakedBezierInterpolator
H A DMaterialProgressDrawable.java345 + (minArc * START_CURVE_INTERPOLATOR.getInterpolation(interpolatedTime));
350 .getInterpolation(interpolatedTime));
709 public float getInterpolation(float input) { method in class:MaterialProgressDrawable.EndCurveInterpolator
710 return super.getInterpolation(Math.max(0, (input - 0.5f) * 2.0f));
719 public float getInterpolation(float input) { method in class:MaterialProgressDrawable.StartCurveInterpolator
720 return super.getInterpolation(Math.min(1, input * 2.0f));
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DGlobalScreenshot.java588 public float getInterpolation(float x) {
598 public float getInterpolation(float x) {
632 - scaleInterpolator.getInterpolation(t)
634 mBackgroundView.setAlpha(scaleInterpolator.getInterpolation(t) * BACKGROUND_ALPHA);
638 mScreenshotFlash.setAlpha(flashAlphaInterpolator.getInterpolation(t));
677 public float getInterpolation(float x) {
701 - scaleInterpolator.getInterpolation(t)
704 mScreenshotView.setAlpha(1f - scaleInterpolator.getInterpolation(t));

Completed in 300 milliseconds

123