Home
last modified time | relevance | path

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

12

/frameworks/base/core/java/android/animation/
DObjectAnimator.java112 PropertyValuesHolder valuesHolder = mValues[0]; in setPropertyName()
134 PropertyValuesHolder valuesHolder = mValues[0]; in setProperty()
263 PropertyValuesHolder x = PropertyValuesHolder.ofKeyframes(xPropertyName, in ofInt()
265 PropertyValuesHolder y = PropertyValuesHolder.ofKeyframes(yPropertyName, in ofInt()
305 PropertyValuesHolder x = PropertyValuesHolder.ofKeyframes(xProperty, in ofInt()
307 PropertyValuesHolder y = PropertyValuesHolder.ofKeyframes(yProperty, in ofInt()
329 PropertyValuesHolder pvh = PropertyValuesHolder.ofMultiInt(propertyName, values); in ofMultiInt()
349 PropertyValuesHolder pvh = PropertyValuesHolder.ofMultiInt(propertyName, path); in ofMultiInt()
375 PropertyValuesHolder pvh = PropertyValuesHolder.ofMultiInt(propertyName, converter, in ofMultiInt()
462 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.java263 PropertyValuesHolder[] mValues;
269 HashMap<String, PropertyValuesHolder> mValuesMap;
482 public static ValueAnimator ofPropertyValuesHolder(PropertyValuesHolder... values) { in ofPropertyValuesHolder()
536 setValues(PropertyValuesHolder.ofInt("", values)); in setIntValues()
538 PropertyValuesHolder valuesHolder = mValues[0]; in setIntValues()
564 setValues(PropertyValuesHolder.ofFloat("", values)); in setFloatValues()
566 PropertyValuesHolder valuesHolder = mValues[0]; in setFloatValues()
601 setValues(PropertyValuesHolder.ofObject("", null, values)); in setObjectValues()
603 PropertyValuesHolder valuesHolder = mValues[0]; in setObjectValues()
618 public void setValues(PropertyValuesHolder... values) { in setValues()
[all …]
DAnimatorInflater.java275 private static PropertyValuesHolder getPVH(TypedArray styledAttributes, int valueType, in getPVH()
296 PropertyValuesHolder returnValue = null; in getPVH()
314 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH()
317 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH()
322 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH()
348 returnValue = PropertyValuesHolder.ofFloat(propertyName, in getPVH()
351 returnValue = PropertyValuesHolder.ofFloat(propertyName, valueFrom); in getPVH()
359 returnValue = PropertyValuesHolder.ofFloat(propertyName, valueTo); in getPVH()
380 returnValue = PropertyValuesHolder.ofInt(propertyName, valueFrom, valueTo); in getPVH()
382 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;
258 PropertyValuesHolder slideInY = PropertyValuesHolder.ofFloat("YProgress", 0.0f); in transformViewForTransition()
259 PropertyValuesHolder slideInX = PropertyValuesHolder.ofFloat("XProgress", 0.0f); in transformViewForTransition()
278 PropertyValuesHolder slideOutY = PropertyValuesHolder.ofFloat("YProgress", 1.0f); in transformViewForTransition()
279 PropertyValuesHolder slideOutX = PropertyValuesHolder.ofFloat("XProgress", 0.0f); in transformViewForTransition()
355PropertyValuesHolder translationX = PropertyValuesHolder.ofFloat("translationX", transX); in transformViewAtIndex()
356PropertyValuesHolder translationY = PropertyValuesHolder.ofFloat("translationY", transY); in transformViewAtIndex()
357 PropertyValuesHolder scalePropX = PropertyValuesHolder.ofFloat("scaleX", scale); in transformViewAtIndex()
358 PropertyValuesHolder scalePropY = PropertyValuesHolder.ofFloat("scaleY", scale); in transformViewAtIndex()
867PropertyValuesHolder 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()
DActionMenuPresenter.java22 import android.animation.PropertyValuesHolder;
310 PropertyValuesHolder pvhX = null; in runItemAnimations()
311 PropertyValuesHolder pvhY = null; in runItemAnimations()
313 pvhX = PropertyValuesHolder.ofFloat(View.TRANSLATION_X, in runItemAnimations()
317 pvhY = PropertyValuesHolder.ofFloat(View.TRANSLATION_Y, in runItemAnimations()
/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 PropertyValuesHolder {
34 virtual ~PropertyValuesHolder() {} in ~PropertyValuesHolder()
64 class PropertyValuesHolderImpl : public PropertyValuesHolder {
DPropertyValuesAnimatorSet.cpp25 void PropertyValuesAnimatorSet::addPropertyAnimator(PropertyValuesHolder* propertyValuesHolder, in addPropertyAnimator()
128 PropertyAnimator::PropertyAnimator(PropertyValuesHolder* holder, Interpolator* interpolator, in PropertyAnimator()
/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/services/core/java/com/android/server/wm/
DDragState.java41 import android.animation.PropertyValuesHolder;
715 PropertyValuesHolder.ofFloat( in createReturnAnimationLocked()
718 PropertyValuesHolder.ofFloat( in createReturnAnimationLocked()
721 PropertyValuesHolder.ofFloat(ANIMATED_PROPERTY_SCALE, mAnimatedScale, in createReturnAnimationLocked()
723 PropertyValuesHolder.ofFloat( in createReturnAnimationLocked()
746 PropertyValuesHolder.ofFloat( in createCancelAnimationLocked()
748 PropertyValuesHolder.ofFloat( in createCancelAnimationLocked()
750 PropertyValuesHolder.ofFloat(ANIMATED_PROPERTY_SCALE, mAnimatedScale, 0), in createCancelAnimationLocked()
751 PropertyValuesHolder.ofFloat(ANIMATED_PROPERTY_ALPHA, mOriginalAlpha, 0)); in createCancelAnimationLocked()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSliceView.java21 import android.animation.PropertyValuesHolder;
330 PropertyValuesHolder left = PropertyValuesHolder.ofInt("left", 0, 1); in onFinishInflate()
331 PropertyValuesHolder right = PropertyValuesHolder.ofInt("right", 0, 1); in onFinishInflate()
/frameworks/base/core/java/android/transition/
DChangeTransform.java22 import android.animation.PropertyValuesHolder;
299 PropertyValuesHolder valuesProperty = PropertyValuesHolder.ofObject( in createTransformAnimator()
305 PropertyValuesHolder translationProperty = PropertyValuesHolder.ofObject( in createTransformAnimator()
/frameworks/base/graphics/java/android/graphics/drawable/
DAnimatedVectorDrawable.java23 import android.animation.PropertyValuesHolder;
594 PropertyValuesHolder[] holders = ((ObjectAnimator) animator).getValues(); in updateAnimatorProperty()
596 PropertyValuesHolder pvh = holders[i]; in updateAnimatorProperty()
624 private static boolean containsSameValueType(PropertyValuesHolder holder, Property property) { in containsSameValueType()
1255 private PropertyValuesHolder.PropertyValues mTmpValues =
1256 new PropertyValuesHolder.PropertyValues();
1335 PropertyValuesHolder[] values = animator.getValues(); in createRTAnimator()
1361 private void createRTAnimatorForGroup(PropertyValuesHolder[] values, in createRTAnimatorForGroup()
1453 private void createRTAnimatorForRootGroup(PropertyValuesHolder[] values, in createRTAnimatorForRootGroup()
1515 PropertyValuesHolder.PropertyValues.DataSource dataSource, long duration) { in createFloatDataPoints()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
DQSIconViewImpl.java20 import android.animation.PropertyValuesHolder;
203 PropertyValuesHolder values = PropertyValuesHolder.ofInt("color", fromColor, toColor); in animateGrayScale()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DPropertyAnimator.java21 import android.animation.PropertyValuesHolder;
78 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAnimation()
/frameworks/base/core/java/android/inputmethodservice/navigationbar/
DNavigationBarView.java26 import android.animation.PropertyValuesHolder;
221 PropertyValuesHolder.ofFloat(KeyButtonDrawable.KEY_DRAWABLE_ROTATE, degrees), in orientBackButton()
222 PropertyValuesHolder.ofFloat(KeyButtonDrawable.KEY_DRAWABLE_TRANSLATE_Y, targetY)); in orientBackButton()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DExpandableViewState.java21 import android.animation.PropertyValuesHolder;
252 PropertyValuesHolder[] values = previousAnimator.getValues(); in startHeightAnimation()
338 PropertyValuesHolder[] values = previousAnimator.getValues(); in startClipAnimation()
DViewState.java22 import android.animation.PropertyValuesHolder;
451 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAlphaAnimation()
538 PropertyValuesHolder[] values = previousAnimator.getValues(); in startZTranslationAnimation()
599 PropertyValuesHolder[] values = previousAnimator.getValues(); in startXTranslationAnimation()
665 PropertyValuesHolder[] values = previousAnimator.getValues(); in startYTranslationAnimation()
/frameworks/base/libs/hwui/jni/
Dandroid_graphics_drawable_AnimatedVectorDrawable.cpp87 PropertyValuesHolder* holder = reinterpret_cast<PropertyValuesHolder*>(propertyHolderPtr); in addAnimator()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DPagedTileLayout.java11 import android.animation.PropertyValuesHolder;
722 PropertyValuesHolder.ofFloat(View.ALPHA, 1),
723 PropertyValuesHolder.ofFloat(View.SCALE_X, 1),
724 PropertyValuesHolder.ofFloat(View.SCALE_Y, 1));

12