Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/animation/
H A 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()
77 float nextValue = nextKeyframe.getFloatValue(); in getFloatValue()
79 float nextFraction = nextKeyframe.getFraction(); in getFloatValue()
92 FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(i); in getFloatValue() local
93 if (fraction < nextKeyframe.getFraction()) { in getFloatValue()
96 (nextKeyframe.getFraction() - prevKeyframe.getFraction()); in getFloatValue()
98 float nextValue = nextKeyframe.getFloatValue(); in getFloatValue()
[all …]
H A 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()
77 int nextValue = nextKeyframe.getIntValue(); in getIntValue()
79 float nextFraction = nextKeyframe.getFraction(); in getIntValue()
91 IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(i); in getIntValue() local
92 if (fraction < nextKeyframe.getFraction()) { in getIntValue()
95 (nextKeyframe.getFraction() - prevKeyframe.getFraction()); in getIntValue()
97 int nextValue = nextKeyframe.getIntValue(); in getIntValue()
[all …]
H A 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()