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

/frameworks/base/core/java/android/animation/
H A DKeyframeSet.java81 public static KeyframeSet ofFloat(float... values) { method in class:KeyframeSet
86 keyframes[0] = (FloatKeyframe) Keyframe.ofFloat(0f);
87 keyframes[1] = (FloatKeyframe) Keyframe.ofFloat(1f, values[0]);
92 keyframes[0] = (FloatKeyframe) Keyframe.ofFloat(0f, values[0]);
95 (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.java434 public static ObjectAnimator ofFloat(Object target, String propertyName, float... values) { method in class:ObjectAnimator
457 public static ObjectAnimator ofFloat(Object target, String xPropertyName, String yPropertyName, method in class:ObjectAnimator
479 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> property, method in class:ObjectAnimator
499 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> xProperty, method in class:ObjectAnimator
751 setValues(PropertyValuesHolder.ofFloat(mProperty, values));
753 setValues(PropertyValuesHolder.ofFloat(mPropertyName, values));
H A DPropertyValuesHolder.java273 public static PropertyValuesHolder ofFloat(String propertyName, float... values) { method in class:PropertyValuesHolder
284 public static PropertyValuesHolder ofFloat(Property<?, Float> property, float... values) { method in class:PropertyValuesHolder
606 mKeyframes = KeyframeSet.ofFloat(values);
H A DValueAnimator.java357 public static ValueAnimator ofFloat(float... values) { method in class:ValueAnimator
448 setValues(PropertyValuesHolder.ofFloat("", values));

Completed in 335 milliseconds