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

12

/frameworks/base/core/java/android/animation/
H A DTimeInterpolator.java37 float getInterpolation(float input); method in interface:TimeInterpolator
H A DFloatKeyframeSet.java69 fraction = mInterpolator.getInterpolation(fraction);
86 fraction = interpolator.getInterpolation(fraction);
102 fraction = interpolator.getInterpolation(fraction);
116 fraction = interpolator.getInterpolation(fraction);
H A DIntKeyframeSet.java69 fraction = mInterpolator.getInterpolation(fraction);
86 fraction = interpolator.getInterpolation(fraction);
102 fraction = interpolator.getInterpolation(fraction);
115 fraction = interpolator.getInterpolation(fraction);
H A DKeyframeSet.java181 fraction = mInterpolator.getInterpolation(fraction);
190 fraction = interpolator.getInterpolation(fraction);
201 fraction = interpolator.getInterpolation(fraction);
215 fraction = interpolator.getInterpolation(fraction);
/frameworks/base/core/java/android/view/animation/
H A DLinearInterpolator.java34 public float getInterpolation(float input) { method in class:LinearInterpolator
H A DAccelerateDecelerateInterpolator.java35 public float getInterpolation(float input) { method in class:AccelerateDecelerateInterpolator
H A DBounceInterpolator.java38 public float getInterpolation(float t) { method in class:BounceInterpolator
H A DCycleInterpolator.java42 public float getInterpolation(float input) { method in class:CycleInterpolator
H A DAccelerateInterpolator.java60 public float getInterpolation(float input) { method in class:AccelerateInterpolator
H A DAnticipateInterpolator.java52 public float getInterpolation(float t) { method in class:AnticipateInterpolator
H A DDecelerateInterpolator.java52 public float getInterpolation(float input) { method in class:DecelerateInterpolator
H A DOvershootInterpolator.java53 public float getInterpolation(float t) { method in class:OvershootInterpolator
H A DAnticipateOvershootInterpolator.java75 public float getInterpolation(float t) { method in class:AnticipateOvershootInterpolator
H A DLayoutAnimationController.java385 normalizedDelay = mInterpolator.getInterpolation(normalizedDelay);
H A DAnimation.java869 final float interpolatedTime = mInterpolator.getInterpolation(normalizedTime);
1047 applyTransformation(mInterpolator.getInterpolation(0.0f), previousTransformation);
H A DGridLayoutAnimationController.java339 normalizedDelay = mInterpolator.getInterpolation(normalizedDelay);
H A DAnimationSet.java354 a.applyTransformation(interpolator != null ? interpolator.getInterpolation(0.0f)
/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/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);
H A DKeyguardGlowStripView.java95 alpha = mDotAlphaInterpolator.getInterpolation(alpha);
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DGlobalScreenshot.java535 public float getInterpolation(float x) {
545 public float getInterpolation(float x) {
579 - scaleInterpolator.getInterpolation(t)
581 mBackgroundView.setAlpha(scaleInterpolator.getInterpolation(t) * BACKGROUND_ALPHA);
585 mScreenshotFlash.setAlpha(flashAlphaInterpolator.getInterpolation(t));
624 public float getInterpolation(float x) {
648 - scaleInterpolator.getInterpolation(t)
651 mScreenshotView.setAlpha(1f - scaleInterpolator.getInterpolation(t));
/frameworks/support/v4/java/android/support/v4/widget/
H A DAutoScrollHelper.java613 interpolated = -mEdgeInterpolator.getInterpolation(-value);
615 interpolated = mEdgeInterpolator.getInterpolation(value);
/frameworks/base/core/java/com/android/internal/widget/
H A DAutoScrollHelper.java612 interpolated = -mEdgeInterpolator.getInterpolation(-value);
614 interpolated = mEdgeInterpolator.getInterpolation(value);
/frameworks/base/core/java/android/widget/
H A DEdgeEffect.java385 final float interp = mInterpolator.getInterpolation(t);
/frameworks/base/core/tests/coretests/src/android/view/
H A DVelocityTest.java250 float ii = interpolator.getInterpolation(i / (float)steps);

Completed in 174 milliseconds

12