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

/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java175 * @param propertyConstant The property whose cancellation is requested.
179 boolean cancel(int propertyConstant) { argument
180 if ((mPropertyMask & propertyConstant) != 0 && mNameValuesHolder != null) {
184 if (nameValuesHolder.mNameConstant == propertyConstant) {
186 mPropertyMask &= ~propertyConstant;
837 * propertyConstant tells it which property should be set, value is the value to set
840 * @param propertyConstant The property to be set
843 private void setValue(int propertyConstant, float value) { argument
846 switch (propertyConstant) {
893 * @param propertyConstant Th
896 getValue(int propertyConstant) argument
[all...]

Completed in 51 milliseconds