Searched defs:ofInt (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DKeyframe.java73 public static Keyframe ofInt(float fraction, int value) { method in class:Keyframe
89 public static Keyframe ofInt(float fraction) { method in class:Keyframe
H A DKeyframeSet.java51 public static KeyframeSet ofInt(int... values) { method in class:KeyframeSet
55 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f);
56 keyframes[1] = (IntKeyframe) Keyframe.ofInt(1f, values[0]);
58 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f, values[0]);
61 (IntKeyframe) Keyframe.ofInt((float) i / (numKeyframes - 1), values[i]);
H A DObjectAnimator.java206 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { method in class:ObjectAnimator
224 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { method in class:ObjectAnimator
348 setValues(PropertyValuesHolder.ofInt(mProperty, values));
350 setValues(PropertyValuesHolder.ofInt(mPropertyName, values));
500 * <code>ObjectAnimator.ofInt(target, propertyName, 0, 10).setDuration(500).start()</code>.
H A DPropertyValuesHolder.java152 public static PropertyValuesHolder ofInt(String propertyName, int... values) { method in class:PropertyValuesHolder
163 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) { method in class:PropertyValuesHolder
309 mKeyframeSet = KeyframeSet.ofInt(values);
H A DValueAnimator.java276 public static ValueAnimator ofInt(int... values) { method in class:ValueAnimator
356 setValues(PropertyValuesHolder.ofInt("", values));
485 * duration, as in <code>ValueAnimator.ofInt(0, 10).setDuration(500).start()</code>.

Completed in 270 milliseconds