HomeSort by relevance Sort by last modified time
    Searched refs:IntKeyframe (Results 1 - 7 of 7) sorted by null

  /frameworks/base/core/java/android/animation/
IntKeyframeSet.java 19 import android.animation.Keyframe.IntKeyframe;
24 * This class holds a collection of IntKeyframe objects and is called by ValueAnimator to calculate
39 public IntKeyframeSet(IntKeyframe... keyframes) {
52 IntKeyframe[] newKeyframes = new IntKeyframe[numKeyframes];
54 newKeyframes[i] = (IntKeyframe) keyframes.get(i).clone();
70 firstValue = ((IntKeyframe) mKeyframes.get(0)).getIntValue();
71 lastValue = ((IntKeyframe) mKeyframes.get(1)).getIntValue();
84 final IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(0)
    [all...]
Keyframe.java 83 return new IntKeyframe(fraction, value);
99 return new IntKeyframe(fraction);
297 static class IntKeyframe extends Keyframe {
304 IntKeyframe(float fraction, int value) {
311 IntKeyframe(float fraction) {
332 public IntKeyframe clone() {
333 IntKeyframe kfClone = mHasValue ?
334 new IntKeyframe(getFraction(), mValue) :
335 new IntKeyframe(getFraction());
KeyframeSet.java 22 import android.animation.Keyframe.IntKeyframe;
68 IntKeyframe keyframes[] = new IntKeyframe[Math.max(numKeyframes,2)];
70 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f);
71 keyframes[1] = (IntKeyframe) Keyframe.ofInt(1f, values[0]);
73 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f, values[0]);
76 (IntKeyframe) Keyframe.ofInt((float) i / (numKeyframes - 1), values[i]);
117 } else if (keyframes[i] instanceof IntKeyframe) {
130 IntKeyframe intKeyframes[] = new IntKeyframe[numKeyframes]
    [all...]
  /frameworks/base/
compiled-classes-phone 104 android.animation.Keyframe$IntKeyframe
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 

Completed in 65 milliseconds