Searched defs:propertyConstant (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java192 * @param propertyConstant The property whose cancellation is requested.
196 boolean cancel(int propertyConstant) { argument
197 if ((mPropertyMask & propertyConstant) != 0 && mNameValuesHolder != null) {
201 if (nameValuesHolder.mNameConstant == propertyConstant) {
203 mPropertyMask &= ~propertyConstant;
977 * propertyConstant tells it which property should be set, value is the value to set
980 * @param propertyConstant The property to be set
983 private void setValue(int propertyConstant, float value) { argument
986 switch (propertyConstant) {
1030 * @param propertyConstant Th
1033 getValue(int propertyConstant) argument
[all...]

Completed in 7 milliseconds