Searched refs:mProperty (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java47 protected Property mProperty; field in class:PropertyValuesHolder
139 mProperty = property;
489 if (mProperty != null) {
490 // check to make sure that mProperty is on the class of target
492 Object testValue = mProperty.get(target);
495 kf.setValue(mProperty.get(target));
500 Log.w("PropertyValuesHolder","No such property (" + mProperty.getName() +
502 mProperty = null;
537 if (mProperty != null) {
538 kf.setValue(mProperty
[all...]
H A DObjectAnimator.java50 private Property mProperty; field in class:ObjectAnimator
110 if (mProperty != null) {
113 mProperty = property;
318 if (mProperty != null) {
319 setValues(PropertyValuesHolder.ofInt(mProperty, values));
333 if (mProperty != null) {
334 setValues(PropertyValuesHolder.ofFloat(mProperty, values));
348 if (mProperty != null) {
349 setValues(PropertyValuesHolder.ofObject(mProperty, (TypeEvaluator)null, values));

Completed in 61 milliseconds