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

/frameworks/base/core/java/android/animation/
H A DKeyframeSet.java74 public static KeyframeSet ofFloat(float... values) { method in class:KeyframeSet
79 keyframes[0] = (FloatKeyframe) Keyframe.ofFloat(0f);
80 keyframes[1] = (FloatKeyframe) Keyframe.ofFloat(1f, values[0]);
85 keyframes[0] = (FloatKeyframe) Keyframe.ofFloat(0f, values[0]);
88 (FloatKeyframe) Keyframe.ofFloat((float) i / (numKeyframes - 1), values[i]);
H A DKeyframe.java114 public static Keyframe ofFloat(float fraction, float value) { method in class:Keyframe
130 public static Keyframe ofFloat(float fraction) { method in class:Keyframe
H A DObjectAnimator.java442 public static ObjectAnimator ofFloat(Object target, String propertyName, float... values) { method in class:ObjectAnimator
465 public static ObjectAnimator ofFloat(Object target, String xPropertyName, String yPropertyName, method in class:ObjectAnimator
488 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> property, method in class:ObjectAnimator
508 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> xProperty, method in class:ObjectAnimator
781 setValues(PropertyValuesHolder.ofFloat(mProperty, values));
783 setValues(PropertyValuesHolder.ofFloat(mPropertyName, values));
H A DPropertyValuesHolder.java275 public static PropertyValuesHolder ofFloat(String propertyName, float... values) { method in class:PropertyValuesHolder
286 public static PropertyValuesHolder ofFloat(Property<?, Float> property, float... values) { method in class:PropertyValuesHolder
626 mKeyframes = KeyframeSet.ofFloat(values);
H A DValueAnimator.java368 public static ValueAnimator ofFloat(float... values) { method in class:ValueAnimator
464 setValues(PropertyValuesHolder.ofFloat("", values));
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DTouchAnimator.java132 add(target, KeyframeSet.ofFloat(getProperty(target, property, float.class), values));
225 public static KeyframeSet ofFloat(Property property, float... values) { method in class:TouchAnimator.KeyframeSet

Completed in 565 milliseconds