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

/frameworks/base/core/java/android/animation/
H A DKeyframeSet.java140 public static KeyframeSet ofObject(Object... values) { method in class:KeyframeSet
144 keyframes[0] = (ObjectKeyframe) Keyframe.ofObject(0f);
145 keyframes[1] = (ObjectKeyframe) Keyframe.ofObject(1f, values[0]);
147 keyframes[0] = (ObjectKeyframe) Keyframe.ofObject(0f, values[0]);
149 keyframes[i] = (ObjectKeyframe) Keyframe.ofObject((float) i / (numKeyframes - 1), values[i]);
H A DKeyframe.java146 public static Keyframe ofObject(float fraction, Object value) { method in class:Keyframe
162 public static Keyframe ofObject(float fraction) { method in class:Keyframe
H A DObjectAnimator.java571 public static ObjectAnimator ofObject(Object target, String propertyName, method in class:ObjectAnimator
598 public static ObjectAnimator ofObject(Object target, String propertyName, method in class:ObjectAnimator
600 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(propertyName, converter, path);
620 public static <T, V> ObjectAnimator ofObject(T target, Property<T, V> property, method in class:ObjectAnimator
648 public static <T, V, P> ObjectAnimator ofObject(T target, Property<T, P> property, method in class:ObjectAnimator
650 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(property, converter, evaluator,
675 public static <T, V> ObjectAnimator ofObject(T target, @NonNull Property<T, V> property, method in class:ObjectAnimator
677 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(property, converter, path);
743 setValues(PropertyValuesHolder.ofObject(mProperty, (TypeEvaluator) null, values));
745 setValues(PropertyValuesHolder.ofObject(mPropertyNam
[all...]
H A DPropertyValuesHolder.java397 public static PropertyValuesHolder ofObject(String propertyName, TypeEvaluator evaluator, method in class:PropertyValuesHolder
421 public static PropertyValuesHolder ofObject(String propertyName, method in class:PropertyValuesHolder
442 public static <V> PropertyValuesHolder ofObject(Property property, method in class:PropertyValuesHolder
469 public static <T, V> PropertyValuesHolder ofObject(Property<?, V> property, method in class:PropertyValuesHolder
494 public static <V> PropertyValuesHolder ofObject(Property<?, V> property, method in class:PropertyValuesHolder
641 mKeyframes = KeyframeSet.ofObject(values);
H A DValueAnimator.java358 public static ValueAnimator ofObject(TypeEvaluator evaluator, Object... values) { method in class:ValueAnimator
444 setValues(PropertyValuesHolder.ofObject("", null, values));

Completed in 242 milliseconds