/frameworks/base/core/java/android/animation/ |
D | ObjectAnimator.java | 118 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 …]
|
D | PropertyValuesHolder.java | 38 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 …]
|
D | ValueAnimator.java | 248 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 …]
|
D | AnimatorInflater.java | 272 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 …]
|
D | LayoutTransition.java | 285 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/ |
D | ResizeHWLayerActivity.java | 18 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/ |
D | Utils.java | 21 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/ |
D | AnimatorInflaterCompat.java | 28 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/ |
D | PropertyValuesHolderUtilsApi14.java | 19 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/ |
D | PropertyValuesHolderUtilsApi21.java | 19 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/ |
D | RadialSelectorView.java | 21 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()
|
D | RadialTextsView.java | 21 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/ |
D | StackView.java | 19 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() 352 … PropertyValuesHolder translationX = PropertyValuesHolder.ofFloat("translationX", transX); in transformViewAtIndex() 353 … PropertyValuesHolder 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() 864 … PropertyValuesHolder snapBackY = PropertyValuesHolder.ofFloat("YProgress", finalYProgress); [all …]
|
/frameworks/support/transition/base/android/support/transition/ |
D | PropertyValuesHolderUtilsImpl.java | 19 import android.animation.PropertyValuesHolder; 26 PropertyValuesHolder ofPointF(Property<?, PointF> property, Path path); in ofPointF()
|
/frameworks/support/transition/src/android/support/transition/ |
D | PropertyValuesHolderUtils.java | 19 import android.animation.PropertyValuesHolder; 47 static PropertyValuesHolder ofPointF(Property<?, PointF> property, Path path) { in ofPointF()
|
D | TranslationAnimationCreator.java | 22 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/ |
D | PropertyValuesAnimatorSet.h | 28 PropertyAnimator(PropertyValuesHolder* holder, Interpolator* interpolator, nsecs_t startDelay, 38 std::unique_ptr<PropertyValuesHolder> mPropertyValuesHolder; 59 void addPropertyAnimator(PropertyValuesHolder* propertyValuesHolder,
|
D | PropertyValuesHolder.h | 31 class ANDROID_API PropertyValuesHolder { 34 virtual ~PropertyValuesHolder() {} in ~PropertyValuesHolder() 64 class ANDROID_API PropertyValuesHolderImpl : public PropertyValuesHolder {
|
D | PropertyValuesAnimatorSet.cpp | 25 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/ |
D | AnimatedVectorDrawable_Delegate.java | 28 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/ |
D | ParallaxTarget.java | 20 import android.animation.PropertyValuesHolder; 82 public PropertyValuesHolderTarget(Object targetObject, PropertyValuesHolder values) { in PropertyValuesHolderTarget()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
D | TaskViewTransform.java | 21 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/ |
D | AutoCancelTest.java | 47 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/ |
D | PropertyAnimator.java | 21 import android.animation.PropertyValuesHolder; 56 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAnimation()
|
/frameworks/base/core/java/android/transition/ |
D | ChangeTransform.java | 22 import android.animation.PropertyValuesHolder; 295 PropertyValuesHolder valuesProperty = PropertyValuesHolder.ofObject( in createTransformAnimator() 301 PropertyValuesHolder translationProperty = PropertyValuesHolder.ofObject( in createTransformAnimator()
|