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

/frameworks/base/core/java/android/animation/
H A DKeyframeSet.java66 public static KeyframeSet ofInt(int... values) { method in class:KeyframeSet
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]);
H A DKeyframe.java82 public static Keyframe ofInt(float fraction, int value) { method in class:Keyframe
98 public static Keyframe ofInt(float fraction) { method in class:Keyframe
H A DObjectAnimator.java217 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { method in class:ObjectAnimator
240 public static ObjectAnimator ofInt(Object target, String xPropertyName, String yPropertyName, method in class:ObjectAnimator
262 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { method in class:ObjectAnimator
281 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> xProperty, method in class:ObjectAnimator
373 ObjectAnimator animator = ofInt(target, propertyName, values);
392 ObjectAnimator animator = ofInt(target, property, values);
713 setValues(PropertyValuesHolder.ofInt(mProperty, values));
715 setValues(PropertyValuesHolder.ofInt(mPropertyName, values));
867 * <code>ObjectAnimator.ofInt(target, propertyName, 0, 10).setDuration(500).start()</code>.
H A DPropertyValuesHolder.java157 public static PropertyValuesHolder ofInt(String propertyName, int... values) { method in class:PropertyValuesHolder
168 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) { method in class:PropertyValuesHolder
590 mKeyframes = KeyframeSet.ofInt(values);
H A DValueAnimator.java286 public static ValueAnimator ofInt(int... values) { method in class:ValueAnimator
384 setValues(PropertyValuesHolder.ofInt("", values));
513 * duration, as in <code>ValueAnimator.ofInt(0, 10).setDuration(500).start()</code>.

Completed in 1152 milliseconds