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

/frameworks/base/core/java/android/animation/
H A DKeyframeSet.java80 public static KeyframeSet ofFloat(float... values) { method in class:KeyframeSet
85 keyframes[0] = (FloatKeyframe) Keyframe.ofFloat(0f);
86 keyframes[1] = (FloatKeyframe) Keyframe.ofFloat(1f, values[0]);
91 keyframes[0] = (FloatKeyframe) Keyframe.ofFloat(0f, values[0]);
94 (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.java411 public static ObjectAnimator ofFloat(Object target, String propertyName, float... values) { method in class:ObjectAnimator
434 public static ObjectAnimator ofFloat(Object target, String xPropertyName, String yPropertyName, method in class:ObjectAnimator
456 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> property, method in class:ObjectAnimator
476 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> xProperty, method in class:ObjectAnimator
728 setValues(PropertyValuesHolder.ofFloat(mProperty, values));
730 setValues(PropertyValuesHolder.ofFloat(mPropertyName, values));
H A DPropertyValuesHolder.java278 public static PropertyValuesHolder ofFloat(String propertyName, float... values) { method in class:PropertyValuesHolder
289 public static PropertyValuesHolder ofFloat(Property<?, Float> property, float... values) { method in class:PropertyValuesHolder
611 mKeyframes = KeyframeSet.ofFloat(values);
H A DValueAnimator.java311 public static ValueAnimator ofFloat(float... values) { method in class:ValueAnimator
402 setValues(PropertyValuesHolder.ofFloat("", values));

Completed in 61 milliseconds