/frameworks/base/core/java/android/animation/ |
D | ObjectAnimator.java | 594 public static ObjectAnimator ofObject(Object target, String propertyName, in ofObject() method in ObjectAnimator 621 public static ObjectAnimator ofObject(Object target, String propertyName, in ofObject() method in ObjectAnimator 623 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(propertyName, converter, path); in ofObject() 643 public static <T, V> ObjectAnimator ofObject(T target, Property<T, V> property, in ofObject() method in ObjectAnimator 671 public static <T, V, P> ObjectAnimator ofObject(T target, Property<T, P> property, in ofObject() method in ObjectAnimator 673 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(property, converter, evaluator, in ofObject() 698 public static <T, V> ObjectAnimator ofObject(T target, @NonNull Property<T, V> property, in ofObject() method in ObjectAnimator 700 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(property, converter, path); in ofObject() 766 setValues(PropertyValuesHolder.ofObject(mProperty, (TypeEvaluator) null, values)); in setObjectValues() 768 setValues(PropertyValuesHolder.ofObject(mPropertyName, in setObjectValues()
|
D | KeyframeSet.java | 139 public static KeyframeSet ofObject(Object... values) { in ofObject() method in KeyframeSet 143 keyframes[0] = (ObjectKeyframe) Keyframe.ofObject(0f); in ofObject() 144 keyframes[1] = (ObjectKeyframe) Keyframe.ofObject(1f, values[0]); in ofObject() 146 keyframes[0] = (ObjectKeyframe) Keyframe.ofObject(0f, values[0]); in ofObject() 148 … keyframes[i] = (ObjectKeyframe) Keyframe.ofObject((float) i / (numKeyframes - 1), values[i]); in ofObject()
|
D | Keyframe.java | 146 public static Keyframe ofObject(float fraction, Object value) { in ofObject() method in Keyframe 162 public static Keyframe ofObject(float fraction) { in ofObject() method in Keyframe
|
D | PropertyValuesHolder.java | 395 public static PropertyValuesHolder ofObject(String propertyName, TypeEvaluator evaluator, in ofObject() method in PropertyValuesHolder 419 public static PropertyValuesHolder ofObject(String propertyName, in ofObject() method in PropertyValuesHolder 440 public static <V> PropertyValuesHolder ofObject(Property property, in ofObject() method in PropertyValuesHolder 467 public static <T, V> PropertyValuesHolder ofObject(Property<?, V> property, in ofObject() method in PropertyValuesHolder 492 public static <V> PropertyValuesHolder ofObject(Property<?, V> property, in ofObject() method in PropertyValuesHolder 639 mKeyframes = KeyframeSet.ofObject(values); in setObjectValues()
|
D | AnimatorInflater.java | 338 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH() 341 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH() 347 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH() 945 Keyframe.ofObject(fraction); in createNewKeyframe()
|
D | ValueAnimator.java | 394 public static ValueAnimator ofObject(TypeEvaluator evaluator, Object... values) { in ofObject() method in ValueAnimator 480 setValues(PropertyValuesHolder.ofObject("", null, values)); in setObjectValues()
|
/frameworks/base/core/java/android/transition/ |
D | ChangeBounds.java | 321 anim = ObjectAnimator.ofObject(view, POSITION_PROPERTY, null, in createAnimator() 328 .ofObject(viewBounds, TOP_LEFT_PROPERTY, null, topLeftPath); in createAnimator() 332 ObjectAnimator bottomRightAnimator = ObjectAnimator.ofObject(viewBounds, in createAnimator() 346 anim = ObjectAnimator.ofObject(view, TOP_LEFT_ONLY_PROPERTY, null, in createAnimator() 351 anim = ObjectAnimator.ofObject(view, BOTTOM_RIGHT_ONLY_PROPERTY, null, in createAnimator() 365 positionAnimator = ObjectAnimator.ofObject(view, POSITION_PROPERTY, null, in createAnimator() 378 clipAnimator = ObjectAnimator.ofObject(view, "clipBounds", sRectEvaluator, in createAnimator() 452 PropertyValuesHolder origin = PropertyValuesHolder.ofObject( in createAnimator()
|
D | ChangeImageTransform.java | 191 return ObjectAnimator.ofObject(imageView, ANIMATED_TRANSFORM_PROPERTY, in createNullAnimator() 197 return ObjectAnimator.ofObject(imageView, ANIMATED_TRANSFORM_PROPERTY, in createMatrixAnimator()
|
D | Crossfade.java | 243 Animator anim2 = ObjectAnimator.ofObject(startDrawable, "bounds", in createAnimator() 249 Animator anim3 = ObjectAnimator.ofObject(endDrawable, "bounds", in createAnimator()
|
D | ChangeClipBounds.java | 102 return ObjectAnimator.ofObject(endValues.view, "clipBounds", evaluator, start, end); in createAnimator()
|
D | ChangeTransform.java | 293 PropertyValuesHolder valuesProperty = PropertyValuesHolder.ofObject( in createTransformAnimator() 299 PropertyValuesHolder translationProperty = PropertyValuesHolder.ofObject( in createTransformAnimator()
|
/frameworks/base/core/java/com/android/internal/transition/ |
D | EpicenterTranslateClipReveal.java | 222 final ObjectAnimator animX = ObjectAnimator.ofObject(view, propX, evaluator, startX, endX); in createRectAnimator() 228 final ObjectAnimator animY = ObjectAnimator.ofObject(view, propY, evaluator, startY, endY); in createRectAnimator()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
D | TaskViewHeader.java | 366 ValueAnimator backgroundColor = ValueAnimator.ofObject(new ArgbEvaluator(), in onTaskViewFocusChanged() 398 ValueAnimator backgroundColor = ValueAnimator.ofObject(new ArgbEvaluator(), in onTaskViewFocusChanged()
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
D | SearchOrbView.java | 351 mColorAnimator = ValueAnimator.ofObject(mColorEvaluator, in enableOrbColorAnimation()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
D | ScreenPinningRequest.java | 164 mColorAnim = ValueAnimator.ofObject(new ArgbEvaluator(), 0, bgColor); in onAttachedToWindow()
|
/frameworks/base/services/core/java/com/android/server/policy/ |
D | ImmersiveModeConfirmation.java | 280 mColorAnim = ValueAnimator.ofObject(new ArgbEvaluator(), 0, BGCOLOR); in onAttachedToWindow()
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | prop-animation.jd | 392 android.animation.ValueAnimator#ofObject ofObject()}. For example:</p> 405 ValueAnimator animation = ValueAnimator.ofObject(new MyTypeEvaluator(), startPropertyValue, endProp… 806 android.animation.Keyframe#ofFloat ofFloat()}, or {@link android.animation.Keyframe#ofObject 807 ofObject()} to obtain the appropriate type of {@link android.animation.Keyframe}. You then call
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | ScreenMagnifier.java | 981 mTransformationAnimator = ObjectAnimator.ofObject(this, property, in MagnificationController()
|
/frameworks/base/docs/html/sdk/api_diff/21/ |
D | missingSinces.txt | 708 NO DOC BLOCK: android.animation.ObjectAnimator Method ofObject(T, android.util.Property<T, P>, andr… 709 NO DOC BLOCK: android.animation.ObjectAnimator Method ofObject(T, android.util.Property<T, V>, andr… 710 NO DOC BLOCK: android.animation.ObjectAnimator Method ofObject(java.lang.Object, java.lang.String, … 711 NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofObject(android.util.Property<?, V>, a… 712 NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofObject(android.util.Property<?, V>, a… 713 NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofObject(java.lang.String, android.anim…
|
/frameworks/base/api/ |
D | current.txt | 2956 method public static android.animation.Keyframe ofObject(float, java.lang.Object); 2957 method public static android.animation.Keyframe ofObject(float); 3023 …method public static android.animation.ObjectAnimator ofObject(java.lang.Object, java.lang.String,… 3024 …method public static android.animation.ObjectAnimator ofObject(java.lang.Object, java.lang.String,… 3025 …method public static android.animation.ObjectAnimator ofObject(T, android.util.Property<T, V>, and… 3026 …method public static android.animation.ObjectAnimator ofObject(T, android.util.Property<T, P>, and… 3027 …method public static android.animation.ObjectAnimator ofObject(T, android.util.Property<T, V>, and… 3057 …method public static android.animation.PropertyValuesHolder ofObject(java.lang.String, android.ani… 3058 …method public static android.animation.PropertyValuesHolder ofObject(java.lang.String, android.ani… 3059 …method public static android.animation.PropertyValuesHolder ofObject(android.util.Property, androi… [all …]
|
D | system-current.txt | 3055 method public static android.animation.Keyframe ofObject(float, java.lang.Object); 3056 method public static android.animation.Keyframe ofObject(float); 3122 …method public static android.animation.ObjectAnimator ofObject(java.lang.Object, java.lang.String,… 3123 …method public static android.animation.ObjectAnimator ofObject(java.lang.Object, java.lang.String,… 3124 …method public static android.animation.ObjectAnimator ofObject(T, android.util.Property<T, V>, and… 3125 …method public static android.animation.ObjectAnimator ofObject(T, android.util.Property<T, P>, and… 3126 …method public static android.animation.ObjectAnimator ofObject(T, android.util.Property<T, V>, and… 3156 …method public static android.animation.PropertyValuesHolder ofObject(java.lang.String, android.ani… 3157 …method public static android.animation.PropertyValuesHolder ofObject(java.lang.String, android.ani… 3158 …method public static android.animation.PropertyValuesHolder ofObject(android.util.Property, androi… [all …]
|