Home
last modified time | relevance | path

Searched refs:mKeyframes (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/java/android/animation/
DFloatKeyframeSet.java50 final List<Keyframe> keyframes = mKeyframes; in clone()
51 final int numKeyframes = mKeyframes.size(); in clone()
70 firstValue = ((FloatKeyframe) mKeyframes.get(0)).getFloatValue(); in getFloatValue()
71 lastValue = ((FloatKeyframe) mKeyframes.get(1)).getFloatValue(); in getFloatValue()
84 final FloatKeyframe prevKeyframe = (FloatKeyframe) mKeyframes.get(0); in getFloatValue()
85 final FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(1); in getFloatValue()
100 final FloatKeyframe prevKeyframe = (FloatKeyframe) mKeyframes.get(mNumKeyframes - 2); in getFloatValue()
101 final FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(mNumKeyframes - 1); in getFloatValue()
116 FloatKeyframe prevKeyframe = (FloatKeyframe) mKeyframes.get(0); in getFloatValue()
118 FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(i); in getFloatValue()
[all …]
DIntKeyframeSet.java50 List<Keyframe> keyframes = mKeyframes; in clone()
51 int numKeyframes = mKeyframes.size(); in clone()
70 firstValue = ((IntKeyframe) mKeyframes.get(0)).getIntValue(); in getIntValue()
71 lastValue = ((IntKeyframe) mKeyframes.get(1)).getIntValue(); in getIntValue()
84 final IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(0); in getIntValue()
85 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(1); in getIntValue()
100 final IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(mNumKeyframes - 2); in getIntValue()
101 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(mNumKeyframes - 1); in getIntValue()
115 IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(0); in getIntValue()
117 IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(i); in getIntValue()
[all …]
DPropertyValuesHolder.java78 Keyframes mKeyframes = null; field in PropertyValuesHolder
430 pvh.mKeyframes = KeyframeSet.ofPath(path); in ofObject()
515 pvh.mKeyframes = KeyframeSet.ofPath(path); in ofObject()
574 pvh.mKeyframes = keyframes; in ofKeyframes()
587 pvh.mKeyframes = keyframes; in ofKeyframes()
608 mKeyframes = KeyframeSet.ofInt(values); in setIntValues()
626 mKeyframes = KeyframeSet.ofFloat(values); in setFloatValues()
641 mKeyframes = new KeyframeSet(keyframes); in setKeyframes()
664 mKeyframes = KeyframeSet.ofObject(values); in setObjectValues()
666 mKeyframes.setEvaluator(mEvaluator); in setObjectValues()
[all …]
DKeyframeSet.java41 List<Keyframe> mKeyframes; // only used when there are not 2 keyframes field in KeyframeSet
48 mKeyframes = Arrays.asList(keyframes); in KeyframeSet()
63 return mKeyframes; in getKeyframes()
182 List<Keyframe> keyframes = mKeyframes; in clone()
183 int numKeyframes = mKeyframes.size(); in clone()
214 final Keyframe nextKeyframe = mKeyframes.get(1); in getValue()
225 final Keyframe prevKeyframe = mKeyframes.get(mNumKeyframes - 2); in getValue()
238 Keyframe nextKeyframe = mKeyframes.get(i); in getValue()
261 returnVal += mKeyframes.get(i).getValue() + " "; in toString()
DLayoutTransition.java891 if (pvh.mKeyframes instanceof KeyframeSet) { in setupChangeAnimation()
892 KeyframeSet keyframeSet = (KeyframeSet) pvh.mKeyframes; in setupChangeAnimation()
899 } else if (!pvh.mKeyframes.getValue(0).equals(pvh.mKeyframes.getValue(1))) { in setupChangeAnimation()
DObjectAnimator.java848 pvh.getPropertyName() + ", " + pvh.mKeyframes.getValue(0) + ", " + in start()
849 pvh.mKeyframes.getValue(1)); in start()
/frameworks/base/services/core/java/com/android/server/wm/animation/
DCurvedTranslateAnimation.java31 private final PathKeyframes mKeyframes; field in CurvedTranslateAnimation
34 mKeyframes = KeyframeSet.ofPath(path); in CurvedTranslateAnimation()
39 PointF location = (PointF) mKeyframes.getValue(interpolatedTime); in applyTransformation()