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

/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java193 * @param propertyConstant The property whose cancellation is requested.
197 boolean cancel(int propertyConstant) { argument
198 if ((mPropertyMask & propertyConstant) != 0 && mNameValuesHolder != null) {
202 if (nameValuesHolder.mNameConstant == propertyConstant) {
204 mPropertyMask &= ~propertyConstant;
978 * propertyConstant tells it which property should be set, value is the value to set
981 * @param propertyConstant The property to be set
984 private void setValue(int propertyConstant, float value) { argument
987 switch (propertyConstant) {
1031 * @param propertyConstant Th
1034 getValue(int propertyConstant) argument
[all...]

Completed in 36 milliseconds