Home
last modified time | relevance | path

Searched refs:propertyType (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DAnimationProps.java120 public <T extends ValueAnimator> T apply(@PropType int propertyType, T animator) { in apply() argument
121 animator.setStartDelay(getStartDelay(propertyType)); in apply()
122 animator.setDuration(getDuration(propertyType)); in apply()
123 animator.setInterpolator(getInterpolator(propertyType)); in apply()
130 public AnimationProps setStartDelay(@PropType int propertyType, int startDelay) { in setStartDelay() argument
134 mPropStartDelay.append(propertyType, startDelay); in setStartDelay()
141 public long getStartDelay(@PropType int propertyType) { in getStartDelay() argument
143 long startDelay = mPropStartDelay.get(propertyType, -1); in getStartDelay()
155 public AnimationProps setDuration(@PropType int propertyType, int duration) { in setDuration() argument
159 mPropDuration.append(propertyType, duration); in setDuration()
[all …]
/frameworks/base/core/java/android/animation/
DPropertyValuesHolder.java788 Class<?> propertyType = mConverter == null ? mValueType : mConverter.getTargetType(); in setupSetter() local
789 mSetter = setupSetterOrGetter(targetClass, sSetterPropertyMap, "set", propertyType); in setupSetter()