Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/animation/
DIntKeyframeSet.java45 List<Keyframe> keyframes = mKeyframes; in clone()
46 int numKeyframes = mKeyframes.size(); in clone()
58 final IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(0); in getIntValue()
59 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(1); in getIntValue()
74 final IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(mNumKeyframes - 2); in getIntValue()
75 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(mNumKeyframes - 1); in getIntValue()
89 IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(0); in getIntValue()
91 IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(i); in getIntValue()
110 return ((Number)mKeyframes.get(mNumKeyframes - 1).getValue()).intValue(); in getIntValue()
DFloatKeyframeSet.java45 final List<Keyframe> keyframes = mKeyframes; in clone()
46 final int numKeyframes = mKeyframes.size(); in clone()
58 final FloatKeyframe prevKeyframe = (FloatKeyframe) mKeyframes.get(0); in getFloatValue()
59 final FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(1); in getFloatValue()
74 final FloatKeyframe prevKeyframe = (FloatKeyframe) mKeyframes.get(mNumKeyframes - 2); in getFloatValue()
75 final FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(mNumKeyframes - 1); in getFloatValue()
90 FloatKeyframe prevKeyframe = (FloatKeyframe) mKeyframes.get(0); in getFloatValue()
92 FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(i); in getFloatValue()
111 return ((Number)mKeyframes.get(mNumKeyframes - 1).getValue()).floatValue(); in getFloatValue()
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()
55 return mKeyframes; in getKeyframes()
174 List<Keyframe> keyframes = mKeyframes; in clone()
175 int numKeyframes = mKeyframes.size(); in clone()
206 final Keyframe nextKeyframe = mKeyframes.get(1); in getValue()
217 final Keyframe prevKeyframe = mKeyframes.get(mNumKeyframes - 2); in getValue()
230 Keyframe nextKeyframe = mKeyframes.get(i); in getValue()
253 returnVal += mKeyframes.get(i).getValue() + " "; in toString()
DLayoutTransition.java895 if (pvh.mKeyframes instanceof KeyframeSet) { in setupChangeAnimation()
896 KeyframeSet keyframeSet = (KeyframeSet) pvh.mKeyframes; in setupChangeAnimation()
903 } 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()