Home
last modified time | relevance | path

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

12

/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.java258 PropertyValuesHolder[] mValues;
264 HashMap<String, PropertyValuesHolder> mValuesMap;
399 public static ValueAnimator ofPropertyValuesHolder(PropertyValuesHolder... values) { in ofPropertyValuesHolder()
453 setValues(PropertyValuesHolder.ofInt("", values)); in setIntValues()
455 PropertyValuesHolder valuesHolder = mValues[0]; in setIntValues()
481 setValues(PropertyValuesHolder.ofFloat("", values)); in setFloatValues()
483 PropertyValuesHolder valuesHolder = mValues[0]; in setFloatValues()
518 setValues(PropertyValuesHolder.ofObject("", null, values)); in setObjectValues()
520 PropertyValuesHolder valuesHolder = mValues[0]; in setObjectValues()
535 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.java287 PropertyValuesHolder pvhLeft = PropertyValuesHolder.ofInt("left", 0, 1); in LayoutTransition()
288 PropertyValuesHolder pvhTop = PropertyValuesHolder.ofInt("top", 0, 1); in LayoutTransition()
289 PropertyValuesHolder pvhRight = PropertyValuesHolder.ofInt("right", 0, 1); in LayoutTransition()
290 PropertyValuesHolder pvhBottom = PropertyValuesHolder.ofInt("bottom", 0, 1); in LayoutTransition()
291 PropertyValuesHolder pvhScrollX = PropertyValuesHolder.ofInt("scrollX", 0, 1); in LayoutTransition()
292 PropertyValuesHolder pvhScrollY = PropertyValuesHolder.ofInt("scrollY", 0, 1); in LayoutTransition()
894 PropertyValuesHolder[] oldValues = valueAnim.getValues(); in setupChangeAnimation()
896 PropertyValuesHolder pvh = oldValues[i]; in setupChangeAnimation()
/frameworks/layoutlib/bridge/src/android/animation/
DPropertyValuesHolder_Accessor.java19 import android.animation.PropertyValuesHolder.FloatPropertyValuesHolder;
20 import android.animation.PropertyValuesHolder.IntPropertyValuesHolder;
21 import android.animation.PropertyValuesHolder.MultiFloatValuesHolder;
22 import android.animation.PropertyValuesHolder.MultiIntValuesHolder;
33 PropertyValuesHolder.sGetterPropertyMap.clear(); in clearClassCaches()
34 PropertyValuesHolder.sSetterPropertyMap.clear(); in clearClassCaches()
/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/base/core/java/android/widget/
DStackView.java19 import android.animation.PropertyValuesHolder;
256 PropertyValuesHolder slideInY = PropertyValuesHolder.ofFloat("YProgress", 0.0f); in transformViewForTransition()
257 PropertyValuesHolder slideInX = PropertyValuesHolder.ofFloat("XProgress", 0.0f); in transformViewForTransition()
276 PropertyValuesHolder slideOutY = PropertyValuesHolder.ofFloat("YProgress", 1.0f); in transformViewForTransition()
277 PropertyValuesHolder slideOutX = PropertyValuesHolder.ofFloat("XProgress", 0.0f); in transformViewForTransition()
353PropertyValuesHolder translationX = PropertyValuesHolder.ofFloat("translationX", transX); in transformViewAtIndex()
354PropertyValuesHolder translationY = PropertyValuesHolder.ofFloat("translationY", transY); in transformViewAtIndex()
355 PropertyValuesHolder scalePropX = PropertyValuesHolder.ofFloat("scaleX", scale); in transformViewAtIndex()
356 PropertyValuesHolder scalePropY = PropertyValuesHolder.ofFloat("scaleY", scale); in transformViewAtIndex()
865PropertyValuesHolder snapBackY = PropertyValuesHolder.ofFloat("YProgress", finalYProgress);
[all …]
DFastScroller.java24 import android.animation.PropertyValuesHolder;
1690 final PropertyValuesHolder left = PropertyValuesHolder.ofInt(LEFT, bounds.left); in animateBounds()
1691 final PropertyValuesHolder top = PropertyValuesHolder.ofInt(TOP, bounds.top); in animateBounds()
1692 final PropertyValuesHolder right = PropertyValuesHolder.ofInt(RIGHT, bounds.right); in animateBounds()
1693 final PropertyValuesHolder bottom = PropertyValuesHolder.ofInt(BOTTOM, bounds.bottom); in animateBounds()
/frameworks/base/libs/hwui/
DPropertyValuesAnimatorSet.h28 PropertyAnimator(PropertyValuesHolder* holder, Interpolator* interpolator, nsecs_t startDelay,
36 std::unique_ptr<PropertyValuesHolder> mPropertyValuesHolder;
57 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()
128 PropertyAnimator::PropertyAnimator(PropertyValuesHolder* holder, Interpolator* interpolator, in PropertyAnimator()
/frameworks/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/base/packages/SystemUI/legacy/recents/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()
DDockState.java30 import android.animation.PropertyValuesHolder;
221 PropertyValuesHolder prop = PropertyValuesHolder.ofObject( in startAnimation()
/frameworks/base/services/core/java/com/android/server/wm/
DDragState.java29 import android.animation.PropertyValuesHolder;
639 PropertyValuesHolder.ofFloat( in createReturnAnimationLocked()
642 PropertyValuesHolder.ofFloat( in createReturnAnimationLocked()
645 PropertyValuesHolder.ofFloat(ANIMATED_PROPERTY_SCALE, 1, 1), in createReturnAnimationLocked()
646 PropertyValuesHolder.ofFloat( in createReturnAnimationLocked()
669 PropertyValuesHolder.ofFloat( in createCancelAnimationLocked()
671 PropertyValuesHolder.ofFloat( in createCancelAnimationLocked()
673 PropertyValuesHolder.ofFloat(ANIMATED_PROPERTY_SCALE, 1, 0), in createCancelAnimationLocked()
674 PropertyValuesHolder.ofFloat(ANIMATED_PROPERTY_ALPHA, mOriginalAlpha, 0)); in createCancelAnimationLocked()
/frameworks/base/core/tests/coretests/src/android/animation/
DAutoCancelTest.java54 PropertyValuesHolder[] pvhArray = new PropertyValuesHolder[properties.length]; in setupAnimator()
56 pvhArray[i] = PropertyValuesHolder.ofFloat(properties[i], 0, 1); in setupAnimator()
/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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSection.java22 import android.animation.PropertyValuesHolder;
98 PropertyValuesHolder[] values = previousAnimator.getValues(); in startTopAnimation()
147 PropertyValuesHolder[] values = previousAnimator.getValues(); in startBottomAnimation()
DExpandableViewState.java21 import android.animation.PropertyValuesHolder;
236 PropertyValuesHolder[] values = previousAnimator.getValues(); in startHeightAnimation()
317 PropertyValuesHolder[] values = previousAnimator.getValues(); in startInsetAnimation()
DViewState.java22 import android.animation.PropertyValuesHolder;
343 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAlphaAnimation()
430 PropertyValuesHolder[] values = previousAnimator.getValues(); in startZTranslationAnimation()
490 PropertyValuesHolder[] values = previousAnimator.getValues(); in startXTranslationAnimation()
555 PropertyValuesHolder[] values = previousAnimator.getValues(); in startYTranslationAnimation()
/frameworks/base/graphics/java/android/graphics/drawable/
DAnimatedVectorDrawable.java23 import android.animation.PropertyValuesHolder;
603 PropertyValuesHolder[] holders = ((ObjectAnimator) animator).getValues(); in updateAnimatorProperty()
605 PropertyValuesHolder pvh = holders[i]; in updateAnimatorProperty()
633 private static boolean containsSameValueType(PropertyValuesHolder holder, Property property) { in containsSameValueType()
1248 private PropertyValuesHolder.PropertyValues mTmpValues =
1249 new PropertyValuesHolder.PropertyValues();
1325 PropertyValuesHolder[] values = animator.getValues(); in createRTAnimator()
1351 private void createRTAnimatorForGroup(PropertyValuesHolder[] values, in createRTAnimatorForGroup()
1443 private void createRTAnimatorForRootGroup(PropertyValuesHolder[] values, in createRTAnimatorForRootGroup()
1505 PropertyValuesHolder.PropertyValues.DataSource dataSource, long duration) { in createFloatDataPoints()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DPropertyAnimator.java21 import android.animation.PropertyValuesHolder;
69 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DPagedTileLayout.java7 import android.animation.PropertyValuesHolder;
400 PropertyValuesHolder.ofFloat(View.ALPHA, 1), in setupBounceAnimator()
401 PropertyValuesHolder.ofFloat(View.SCALE_X, 1), in setupBounceAnimator()
402 PropertyValuesHolder.ofFloat(View.SCALE_Y, 1)); in setupBounceAnimator()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSliceView.java27 import android.animation.PropertyValuesHolder;
454 PropertyValuesHolder left = PropertyValuesHolder.ofInt("left", 0, 1); in onFinishInflate()
455 PropertyValuesHolder right = PropertyValuesHolder.ofInt("right", 0, 1); in onFinishInflate()

12