Home
last modified time | relevance | path

Searched refs:nextKeyframe (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/animation/
DFloatKeyframeSet.java86 final FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(1); in getFloatValue() local
88 float nextValue = nextKeyframe.getFloatValue(); in getFloatValue()
90 float nextFraction = nextKeyframe.getFraction(); in getFloatValue()
91 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getFloatValue()
102 final FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(mNumKeyframes - 1); in getFloatValue() local
104 float nextValue = nextKeyframe.getFloatValue(); in getFloatValue()
106 float nextFraction = nextKeyframe.getFraction(); in getFloatValue()
107 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getFloatValue()
119 FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(i); in getFloatValue() local
120 if (fraction < nextKeyframe.getFraction()) { in getFloatValue()
[all …]
DIntKeyframeSet.java86 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(1); in getIntValue() local
88 int nextValue = nextKeyframe.getIntValue(); in getIntValue()
90 float nextFraction = nextKeyframe.getFraction(); in getIntValue()
91 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getIntValue()
102 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(mNumKeyframes - 1); in getIntValue() local
104 int nextValue = nextKeyframe.getIntValue(); in getIntValue()
106 float nextFraction = nextKeyframe.getFraction(); in getIntValue()
107 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getIntValue()
118 IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(i); in getIntValue() local
119 if (fraction < nextKeyframe.getFraction()) { in getIntValue()
[all …]
DKeyframeSet.java215 final Keyframe nextKeyframe = mKeyframes.get(1); in getValue() local
216 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getValue()
222 (nextKeyframe.getFraction() - prevFraction); in getValue()
224 nextKeyframe.getValue()); in getValue()
239 Keyframe nextKeyframe = mKeyframes.get(i); in getValue() local
240 if (fraction < nextKeyframe.getFraction()) { in getValue()
241 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getValue()
247 (nextKeyframe.getFraction() - prevFraction); in getValue()
249 nextKeyframe.getValue()); in getValue()
251 prevKeyframe = nextKeyframe; in getValue()