Searched refs:IntKeyframe (Results 1 – 4 of 4) sorted by relevance
19 import android.animation.Keyframe.IntKeyframe;40 public IntKeyframeSet(IntKeyframe... keyframes) { in IntKeyframeSet()53 IntKeyframe[] newKeyframes = new IntKeyframe[numKeyframes]; in clone()55 newKeyframes[i] = (IntKeyframe) keyframes.get(i).clone(); in clone()71 firstValue = ((IntKeyframe) mKeyframes.get(0)).getIntValue(); in getIntValue()72 lastValue = ((IntKeyframe) mKeyframes.get(1)).getIntValue(); in getIntValue()85 final IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(0); in getIntValue()86 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(1); in getIntValue()101 final IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(mNumKeyframes - 2); in getIntValue()102 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(mNumKeyframes - 1); in getIntValue()[all …]
83 return new IntKeyframe(fraction, value); in ofInt()99 return new IntKeyframe(fraction); in ofInt()297 static class IntKeyframe extends Keyframe { class in Keyframe304 IntKeyframe(float fraction, int value) { in IntKeyframe() method in Keyframe.IntKeyframe311 IntKeyframe(float fraction) { in IntKeyframe() method in Keyframe.IntKeyframe332 public IntKeyframe clone() { in clone()333 IntKeyframe kfClone = mHasValue ? in clone()334 new IntKeyframe(getFraction(), mValue) : in clone()335 new IntKeyframe(getFraction()); in clone()
23 import android.animation.Keyframe.IntKeyframe;68 IntKeyframe keyframes[] = new IntKeyframe[Math.max(numKeyframes,2)]; in ofInt()70 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f); in ofInt()71 keyframes[1] = (IntKeyframe) Keyframe.ofInt(1f, values[0]); in ofInt()73 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f, values[0]); in ofInt()76 (IntKeyframe) Keyframe.ofInt((float) i / (numKeyframes - 1), values[i]); in ofInt()117 } else if (keyframes[i] instanceof IntKeyframe) { in ofKeyframe()130 IntKeyframe intKeyframes[] = new IntKeyframe[numKeyframes]; in ofKeyframe()132 intKeyframes[i] = (IntKeyframe) keyframes[i]; in ofKeyframe()
14 [Landroid.animation.Keyframe$IntKeyframe;190 android.animation.Keyframe$IntKeyframe