Home
last modified time | relevance | path

Searched refs:PropertyValuesHolder (Results 1 – 25 of 59) sorted by relevance

123

/frameworks/base/core/java/android/animation/
DObjectAnimator.java118 PropertyValuesHolder valuesHolder = mValues[0]; in setPropertyName()
140 PropertyValuesHolder valuesHolder = mValues[0]; in setProperty()
269 PropertyValuesHolder x = PropertyValuesHolder.ofKeyframes(xPropertyName, in ofInt()
271 PropertyValuesHolder y = PropertyValuesHolder.ofKeyframes(yPropertyName, in ofInt()
311 PropertyValuesHolder x = PropertyValuesHolder.ofKeyframes(xProperty, in ofInt()
313 PropertyValuesHolder y = PropertyValuesHolder.ofKeyframes(yProperty, in ofInt()
335 PropertyValuesHolder pvh = PropertyValuesHolder.ofMultiInt(propertyName, values); in ofMultiInt()
355 PropertyValuesHolder pvh = PropertyValuesHolder.ofMultiInt(propertyName, path); in ofMultiInt()
381 PropertyValuesHolder pvh = PropertyValuesHolder.ofMultiInt(propertyName, converter, in ofMultiInt()
468 PropertyValuesHolder x = PropertyValuesHolder.ofKeyframes(xPropertyName, in ofFloat()
[all …]
DPropertyValuesHolder.java38 public class PropertyValuesHolder implements Cloneable { class
134 private PropertyValuesHolder(String propertyName) { in PropertyValuesHolder() method in PropertyValuesHolder
142 private PropertyValuesHolder(Property property) { in PropertyValuesHolder() method in PropertyValuesHolder
156 public static PropertyValuesHolder ofInt(String propertyName, int... values) { in ofInt()
167 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) { in ofInt()
185 public static PropertyValuesHolder ofMultiInt(String propertyName, int[][] values) { in ofMultiInt()
217 public static PropertyValuesHolder ofMultiInt(String propertyName, Path path) { in ofMultiInt()
240 public static <V> PropertyValuesHolder ofMultiInt(String propertyName, in ofMultiInt()
262 public static <T> PropertyValuesHolder ofMultiInt(String propertyName, in ofMultiInt()
275 public static PropertyValuesHolder ofFloat(String propertyName, float... values) { in ofFloat()
[all …]
DValueAnimator.java248 PropertyValuesHolder[] mValues;
254 HashMap<String, PropertyValuesHolder> mValuesMap;
382 public static ValueAnimator ofPropertyValuesHolder(PropertyValuesHolder... values) { in ofPropertyValuesHolder()
436 setValues(PropertyValuesHolder.ofInt("", values)); in setIntValues()
438 PropertyValuesHolder valuesHolder = mValues[0]; in setIntValues()
464 setValues(PropertyValuesHolder.ofFloat("", values)); in setFloatValues()
466 PropertyValuesHolder valuesHolder = mValues[0]; in setFloatValues()
501 setValues(PropertyValuesHolder.ofObject("", null, values)); in setObjectValues()
503 PropertyValuesHolder valuesHolder = mValues[0]; in setObjectValues()
518 public void setValues(PropertyValuesHolder... values) { in setValues()
[all …]
DAnimatorInflater.java272 private static PropertyValuesHolder getPVH(TypedArray styledAttributes, int valueType, in getPVH()
293 PropertyValuesHolder returnValue = null; in getPVH()
311 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH()
314 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH()
319 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH()
345 returnValue = PropertyValuesHolder.ofFloat(propertyName, in getPVH()
348 returnValue = PropertyValuesHolder.ofFloat(propertyName, valueFrom); in getPVH()
356 returnValue = PropertyValuesHolder.ofFloat(propertyName, valueTo); in getPVH()
377 returnValue = PropertyValuesHolder.ofInt(propertyName, valueFrom, valueTo); in getPVH()
379 returnValue = PropertyValuesHolder.ofInt(propertyName, valueFrom); in getPVH()
[all …]
DLayoutTransition.java285 PropertyValuesHolder pvhLeft = PropertyValuesHolder.ofInt("left", 0, 1); in LayoutTransition()
286 PropertyValuesHolder pvhTop = PropertyValuesHolder.ofInt("top", 0, 1); in LayoutTransition()
287 PropertyValuesHolder pvhRight = PropertyValuesHolder.ofInt("right", 0, 1); in LayoutTransition()
288 PropertyValuesHolder pvhBottom = PropertyValuesHolder.ofInt("bottom", 0, 1); in LayoutTransition()
289 PropertyValuesHolder pvhScrollX = PropertyValuesHolder.ofInt("scrollX", 0, 1); in LayoutTransition()
290 PropertyValuesHolder pvhScrollY = PropertyValuesHolder.ofInt("scrollY", 0, 1); in LayoutTransition()
892 PropertyValuesHolder[] oldValues = valueAnim.getValues(); in setupChangeAnimation()
894 PropertyValuesHolder pvh = oldValues[i]; in setupChangeAnimation()
/frameworks/base/tests/UiBench/src/com/android/test/uibench/
DResizeHWLayerActivity.java18 import android.animation.PropertyValuesHolder;
43 PropertyValuesHolder pvhWidth = PropertyValuesHolder.ofInt("width", width, 1); in onCreate()
44 PropertyValuesHolder pvhHeight = PropertyValuesHolder.ofInt("height", height, 1); in onCreate()
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/
DUtils.java21 import android.animation.PropertyValuesHolder;
132 PropertyValuesHolder scaleX = PropertyValuesHolder.ofKeyframe("scaleX", k0, k1, k2, k3); in getPulseAnimator()
133 PropertyValuesHolder scaleY = PropertyValuesHolder.ofKeyframe("scaleY", k0, k1, k2, k3); in getPulseAnimator()
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
DAnimatorInflaterCompat.java28 import android.animation.PropertyValuesHolder;
203 private static PropertyValuesHolder getPVH(TypedArray styledAttributes, int valueType, in getPVH()
224 PropertyValuesHolder returnValue = null; in getPVH()
242 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH()
245 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH()
250 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH()
276 returnValue = PropertyValuesHolder.ofFloat(propertyName, in getPVH()
279 returnValue = PropertyValuesHolder.ofFloat(propertyName, valueFrom); in getPVH()
287 returnValue = PropertyValuesHolder.ofFloat(propertyName, valueTo); in getPVH()
308 returnValue = PropertyValuesHolder.ofInt(propertyName, valueFrom, valueTo); in getPVH()
[all …]
/frameworks/support/transition/api14/android/support/transition/
DPropertyValuesHolderUtilsApi14.java19 import android.animation.PropertyValuesHolder;
29 public PropertyValuesHolder ofPointF(Property<?, PointF> property, Path path) { in ofPointF()
30 return PropertyValuesHolder.ofFloat(new PathProperty<>(property, path), 0f, 1f); in ofPointF()
/frameworks/support/transition/api21/android/support/transition/
DPropertyValuesHolderUtilsApi21.java19 import android.animation.PropertyValuesHolder;
29 public PropertyValuesHolder ofPointF(Property<?, PointF> property, Path path) { in ofPointF()
30 return PropertyValuesHolder.ofObject(property, null, path); in ofPointF()
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
DRadialSelectorView.java21 import android.animation.PropertyValuesHolder;
337 PropertyValuesHolder radiusDisappear = PropertyValuesHolder.ofKeyframe( in getDisappearAnimator()
342 PropertyValuesHolder fadeOut = PropertyValuesHolder.ofKeyframe("alpha", kf0, kf1); in getDisappearAnimator()
375 PropertyValuesHolder radiusReappear = PropertyValuesHolder.ofKeyframe( in getReappearAnimator()
381 PropertyValuesHolder fadeIn = PropertyValuesHolder.ofKeyframe("alpha", kf0, kf1, kf2); in getReappearAnimator()
DRadialTextsView.java21 import android.animation.PropertyValuesHolder;
298 PropertyValuesHolder radiusDisappear = PropertyValuesHolder.ofKeyframe( in renderAnimations()
303 PropertyValuesHolder fadeOut = PropertyValuesHolder.ofKeyframe("alpha", kf0, kf1); in renderAnimations()
322 PropertyValuesHolder radiusReappear = PropertyValuesHolder.ofKeyframe( in renderAnimations()
328 PropertyValuesHolder fadeIn = PropertyValuesHolder.ofKeyframe("alpha", kf0, kf1, kf2); in renderAnimations()
/frameworks/base/core/java/android/widget/
DStackView.java19 import android.animation.PropertyValuesHolder;
255 PropertyValuesHolder slideInY = PropertyValuesHolder.ofFloat("YProgress", 0.0f); in transformViewForTransition()
256 PropertyValuesHolder slideInX = PropertyValuesHolder.ofFloat("XProgress", 0.0f); in transformViewForTransition()
275 PropertyValuesHolder slideOutY = PropertyValuesHolder.ofFloat("YProgress", 1.0f); in transformViewForTransition()
276 PropertyValuesHolder slideOutX = PropertyValuesHolder.ofFloat("XProgress", 0.0f); in transformViewForTransition()
352PropertyValuesHolder translationX = PropertyValuesHolder.ofFloat("translationX", transX); in transformViewAtIndex()
353PropertyValuesHolder translationY = PropertyValuesHolder.ofFloat("translationY", transY); in transformViewAtIndex()
354 PropertyValuesHolder scalePropX = PropertyValuesHolder.ofFloat("scaleX", scale); in transformViewAtIndex()
355 PropertyValuesHolder scalePropY = PropertyValuesHolder.ofFloat("scaleY", scale); in transformViewAtIndex()
864PropertyValuesHolder snapBackY = PropertyValuesHolder.ofFloat("YProgress", finalYProgress);
[all …]
/frameworks/support/transition/base/android/support/transition/
DPropertyValuesHolderUtilsImpl.java19 import android.animation.PropertyValuesHolder;
26 PropertyValuesHolder ofPointF(Property<?, PointF> property, Path path); in ofPointF()
/frameworks/support/transition/src/android/support/transition/
DPropertyValuesHolderUtils.java19 import android.animation.PropertyValuesHolder;
47 static PropertyValuesHolder ofPointF(Property<?, PointF> property, Path path) { in ofPointF()
DTranslationAnimationCreator.java22 import android.animation.PropertyValuesHolder;
68 PropertyValuesHolder.ofFloat(View.TRANSLATION_X, startX, endX), in createAnimation()
69 PropertyValuesHolder.ofFloat(View.TRANSLATION_Y, startY, endY)); in createAnimation()
/frameworks/base/libs/hwui/
DPropertyValuesAnimatorSet.h28 PropertyAnimator(PropertyValuesHolder* holder, Interpolator* interpolator, nsecs_t startDelay,
38 std::unique_ptr<PropertyValuesHolder> mPropertyValuesHolder;
59 void addPropertyAnimator(PropertyValuesHolder* propertyValuesHolder,
DPropertyValuesHolder.h31 class ANDROID_API PropertyValuesHolder {
34 virtual ~PropertyValuesHolder() {} in ~PropertyValuesHolder()
64 class ANDROID_API PropertyValuesHolderImpl : public PropertyValuesHolder {
DPropertyValuesAnimatorSet.cpp25 void PropertyValuesAnimatorSet::addPropertyAnimator(PropertyValuesHolder* propertyValuesHolder, in addPropertyAnimator()
130 PropertyAnimator::PropertyAnimator(PropertyValuesHolder* holder, Interpolator* interpolator, in PropertyAnimator()
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
DAnimatedVectorDrawable_Delegate.java28 import android.animation.PropertyValuesHolder;
228 private PropertyValuesHolder mValues;
251 mValues = PropertyValuesHolder.ofFloat("floatValue", values); in setValues()
255 PropertyValuesHolder getValues() { in getValues()
260 mValues = PropertyValuesHolder.ofInt("intValue", values); in setValues()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DParallaxTarget.java20 import android.animation.PropertyValuesHolder;
82 public PropertyValuesHolderTarget(Object targetObject, PropertyValuesHolder values) { in PropertyValuesHolderTarget()
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DTaskViewTransform.java21 import android.animation.PropertyValuesHolder;
167 PropertyValuesHolder.ofFloat(View.SCALE_X, v.getScaleX(), scale), in applyToTaskView()
168 PropertyValuesHolder.ofFloat(View.SCALE_Y, v.getScaleX(), scale)); in applyToTaskView()
180 PropertyValuesHolder.ofObject(LTRB, Utilities.RECT_EVALUATOR, in applyToTaskView()
/frameworks/base/core/tests/coretests/src/android/animation/
DAutoCancelTest.java47 PropertyValuesHolder[] pvhArray = new PropertyValuesHolder[properties.length]; in setupAnimator()
49 pvhArray[i] = PropertyValuesHolder.ofFloat(properties[i], 0, 1); in setupAnimator()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DPropertyAnimator.java21 import android.animation.PropertyValuesHolder;
56 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAnimation()
/frameworks/base/core/java/android/transition/
DChangeTransform.java22 import android.animation.PropertyValuesHolder;
295 PropertyValuesHolder valuesProperty = PropertyValuesHolder.ofObject( in createTransformAnimator()
301 PropertyValuesHolder translationProperty = PropertyValuesHolder.ofObject( in createTransformAnimator()

123