HomeSort by relevance Sort by last modified time
    Searched refs:IntKeyframe (Results 1 - 12 of 12) 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
34 public IntKeyframeSet(IntKeyframe... keyframes) {
47 IntKeyframe[] newKeyframes = new IntKeyframe[numKeyframes];
49 newKeyframes[i] = (IntKeyframe) keyframes.get(i).clone();
58 final IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(0);
59 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(1)
    [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 20 import android.animation.Keyframe.IntKeyframe;
60 IntKeyframe keyframes[] = new IntKeyframe[Math.max(numKeyframes,2)];
62 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f);
63 keyframes[1] = (IntKeyframe) Keyframe.ofInt(1f, values[0]);
65 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f, values[0]);
68 (IntKeyframe) Keyframe.ofInt((float) i / (numKeyframes - 1), values[i]);
109 } else if (keyframes[i] instanceof IntKeyframe) {
122 IntKeyframe intKeyframes[] = new IntKeyframe[numKeyframes]
    [all...]
  /prebuilts/tools/common/m2/repository/com/nineoldandroids/library/2.4.0/
library-2.4.0.jar 
  /frameworks/base/config/
preloaded-classes 84 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 
  /prebuilts/misc/common/robolectric/android-all/
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 
android-all-stubs.jar 

Completed in 85 milliseconds