Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/utilities/
DAnimationProps.java119 public <T extends ValueAnimator> T apply(@PropType int propertyType, T animator) { in apply() argument
120 animator.setStartDelay(getStartDelay(propertyType)); in apply()
121 animator.setDuration(getDuration(propertyType)); in apply()
122 animator.setInterpolator(getInterpolator(propertyType)); in apply()
129 public AnimationProps setStartDelay(@PropType int propertyType, int startDelay) { in setStartDelay() argument
133 mPropStartDelay.append(propertyType, startDelay); in setStartDelay()
140 public long getStartDelay(@PropType int propertyType) { in getStartDelay() argument
142 long startDelay = mPropStartDelay.get(propertyType, -1); in getStartDelay()
154 public AnimationProps setDuration(@PropType int propertyType, int duration) { in setDuration() argument
158 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()