Home
last modified time | relevance | path

Searched refs:mProperty (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/anim/
DSpringObjectAnimator.java51 private SpringProperty<T> mProperty; field in SpringObjectAnimator
66 mProperty = new SpringProperty<>(property, mSpring); in SpringObjectAnimator()
67 mObjectAnimator = ObjectAnimator.ofFloat(object, mProperty, values); in SpringObjectAnimator()
138 mProperty.switchToSpring(); in startSpring()
278 final FloatProperty<T> mProperty; field in SpringObjectAnimator.SpringProperty
283 mProperty = property; in SpringProperty()
293 return mProperty.get(object); in get()
301 mProperty.setValue(object, progress); in setValue()
DSpringAnimationBuilder.java35 private final FloatProperty<T> mProperty; field in SpringAnimationBuilder
73 mProperty = property; in SpringAnimationBuilder()
75 mStartValue = mProperty.get(target); in SpringAnimationBuilder()
134 mProperty.setValue( in setValue()
198 mProperty.setValue(mTarget, mEndValue); in build()
/packages/apps/TV/common/src/com/android/tv/common/feature/
DPropertyFeature.java33 private final BooleanSystemProperty mProperty; field in PropertyFeature
52 mProperty = new BooleanSystemProperty(key, defaultValue); in PropertyFeature()
57 return mProperty.getValue(); in isEnabled()
62 return mProperty.toString(); in toString()