Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/animation/
DIntKeyframeSet.java59 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(1); in getIntValue() local
61 int nextValue = nextKeyframe.getIntValue(); in getIntValue()
63 float nextFraction = nextKeyframe.getFraction(); in getIntValue()
64 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getIntValue()
75 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(mNumKeyframes - 1); in getIntValue() local
77 int nextValue = nextKeyframe.getIntValue(); in getIntValue()
79 float nextFraction = nextKeyframe.getFraction(); in getIntValue()
80 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getIntValue()
91 IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(i); in getIntValue() local
92 if (fraction < nextKeyframe.getFraction()) { in getIntValue()
[all …]
DFloatKeyframeSet.java59 final FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(1); in getFloatValue() local
61 float nextValue = nextKeyframe.getFloatValue(); in getFloatValue()
63 float nextFraction = nextKeyframe.getFraction(); in getFloatValue()
64 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getFloatValue()
75 final FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(mNumKeyframes - 1); in getFloatValue() local
77 float nextValue = nextKeyframe.getFloatValue(); in getFloatValue()
79 float nextFraction = nextKeyframe.getFraction(); in getFloatValue()
80 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getFloatValue()
92 FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(i); in getFloatValue() local
93 if (fraction < nextKeyframe.getFraction()) { in getFloatValue()
[all …]
DKeyframeSet.java206 final Keyframe nextKeyframe = mKeyframes.get(1); in getValue() local
207 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getValue()
213 (nextKeyframe.getFraction() - prevFraction); in getValue()
215 nextKeyframe.getValue()); in getValue()
230 Keyframe nextKeyframe = mKeyframes.get(i); in getValue() local
231 if (fraction < nextKeyframe.getFraction()) { in getValue()
232 final TimeInterpolator interpolator = nextKeyframe.getInterpolator(); in getValue()
235 (nextKeyframe.getFraction() - prevFraction); in getValue()
241 nextKeyframe.getValue()); in getValue()
243 prevKeyframe = nextKeyframe; in getValue()