/frameworks/base/core/java/android/animation/ |
Keyframes.java | 22 * ValueAnimator to calculate values between those keyframes for a given animation. 25 public interface Keyframes extends Cloneable { 29 * is required only for Keyframes that are not either IntKeyframes or FloatKeyframes, 38 * @return The value type contained by the contained Keyframes. 49 * just using the two keyframes at the appropriate end when the value is outside those bounds. 57 * @return A list of all Keyframes contained by this. This may return null if this is 58 * not made up of Keyframes. 62 Keyframes clone(); 65 * A specialization of Keyframes that has integer primitive value calculation. 67 public interface IntKeyframes extends Keyframes { [all...] |
PathKeyframes.java | 27 * to a Keyframe and a linear interpolation between Keyframes creates a good approximation 31 * many keyframes for a curve. 39 public class PathKeyframes implements Keyframes { 130 public Keyframes clone() { 131 Keyframes clone = null; 133 clone = (Keyframes) super.clone(); 207 private abstract static class SimpleKeyframes implements Keyframes { 218 public Keyframes clone() { 219 Keyframes clone = null; 221 clone = (Keyframes) super.clone() [all...] |
PropertyValuesHolder.java | 76 * The set of keyframes (time/value pairs) that define this animation. 78 Keyframes mKeyframes = null; 218 Keyframes keyframes = KeyframeSet.ofPath(path); local 220 return new MultiIntValuesHolder(propertyName, converter, null, keyframes); 257 * Can be null if the Keyframes have int[] values. 337 Keyframes keyframes = KeyframeSet.ofPath(path); local 339 return new MultiFloatValuesHolder(propertyName, converter, null, keyframes); 375 * Can be null if the Keyframes have float[] values 636 Keyframe keyframes[] = new Keyframe[Math.max(numKeyframes,2)]; local 814 List<Keyframe> keyframes = mKeyframes.getKeyframes(); local 839 List<Keyframe> keyframes = mKeyframes.getKeyframes(); local 917 List<Keyframe> keyframes = mKeyframes.getKeyframes(); local 932 List<Keyframe> keyframes = mKeyframes.getKeyframes(); local [all...] |
FloatKeyframeSet.java | 25 * values between those keyframes for a given animation. The class internal to the animation 26 * package because it is an implementation detail of how Keyframes are stored and used. 33 class FloatKeyframeSet extends KeyframeSet implements Keyframes.FloatKeyframes { 34 public FloatKeyframeSet(FloatKeyframe... keyframes) { 35 super(keyframes); 45 final List<Keyframe> keyframes = mKeyframes; local 49 newKeyframes[i] = (FloatKeyframe) keyframes.get(i).clone();
|
IntKeyframeSet.java | 25 * values between those keyframes for a given animation. The class internal to the animation 26 * package because it is an implementation detail of how Keyframes are stored and used. 33 class IntKeyframeSet extends KeyframeSet implements Keyframes.IntKeyframes { 34 public IntKeyframeSet(IntKeyframe... keyframes) { 35 super(keyframes); 45 List<Keyframe> keyframes = mKeyframes; local 49 newKeyframes[i] = (IntKeyframe) keyframes.get(i).clone();
|
KeyframeSet.java | 30 * values between those keyframes for a given animation. The class internal to the animation 31 * package because it is an implementation detail of how Keyframes are stored and used. 34 public class KeyframeSet implements Keyframes { 41 List<Keyframe> mKeyframes; // only used when there are not 2 keyframes 45 public KeyframeSet(Keyframe... keyframes) { 46 mNumKeyframes = keyframes.length; 48 mKeyframes = Arrays.asList(keyframes); 49 mFirstKeyframe = keyframes[0]; 50 mLastKeyframe = keyframes[mNumKeyframes - 1]; 60 IntKeyframe keyframes[] = new IntKeyframe[Math.max(numKeyframes,2)] local 77 FloatKeyframe keyframes[] = new FloatKeyframe[Math.max(numKeyframes,2)]; local 134 ObjectKeyframe keyframes[] = new ObjectKeyframe[Math.max(numKeyframes,2)]; local 174 List<Keyframe> keyframes = mKeyframes; local [all...] |
AnimatorInflater.java | 526 Keyframes xKeyframes; 527 Keyframes yKeyframes; 835 ArrayList<Keyframe> keyframes = null; local [all...] |
/prebuilts/misc/common/robolectric/android-all/ |
android-all-stubs.jar | |
/frameworks/base/config/ |
preloaded-classes | 87 android.animation.Keyframes 88 android.animation.Keyframes$FloatKeyframes 89 android.animation.Keyframes$IntKeyframes [all...] |
boot-image-profile.txt | 134 HPLandroid/animation/PropertyValuesHolder;->ofKeyframes(Landroid/util/Property;Landroid/animation/Keyframes;)Landroid/animation/PropertyValuesHolder; [all...] |