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

/frameworks/base/core/java/android/animation/
H A DKeyframeSet.java58 public static KeyframeSet ofInt(int... values) { method in class:KeyframeSet
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]);
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.java243 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { method in class:ObjectAnimator
266 public static ObjectAnimator ofInt(Object target, String xPropertyName, String yPropertyName, method in class:ObjectAnimator
289 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { method in class:ObjectAnimator
308 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> xProperty, method in class:ObjectAnimator
402 ObjectAnimator animator = ofInt(target, propertyName, values);
422 ObjectAnimator animator = ofInt(target, property, values);
766 setValues(PropertyValuesHolder.ofInt(mProperty, values));
768 setValues(PropertyValuesHolder.ofInt(mPropertyName, values));
905 * <code>ObjectAnimator.ofInt(target, propertyName, 0, 10).setDuration(500).start()</code>.
H A DPropertyValuesHolder.java156 public static PropertyValuesHolder ofInt(String propertyName, int... values) { method in class:PropertyValuesHolder
167 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) { method in class:PropertyValuesHolder
608 mKeyframes = KeyframeSet.ofInt(values);
H A DValueAnimator.java333 public static ValueAnimator ofInt(int... values) { method in class:ValueAnimator
436 setValues(PropertyValuesHolder.ofInt("", values));
570 * duration, as in <code>ValueAnimator.ofInt(0, 10).setDuration(500).start()</code>.
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DTouchAnimator.java137 add(target, KeyframeSet.ofInt(getProperty(target, property, int.class), values));
221 public static KeyframeSet ofInt(Property property, int... values) { method in class:TouchAnimator.KeyframeSet

Completed in 3521 milliseconds