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

/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java915 * @param constantName The specifier for the property being animated
918 private void animateProperty(int constantName, float toValue) { argument
919 float fromValue = getValue(constantName);
921 animatePropertyBy(constantName, fromValue, deltaValue);
929 * @param constantName The specifier for the property being animated
932 private void animatePropertyBy(int constantName, float byValue) { argument
933 float fromValue = getValue(constantName);
934 animatePropertyBy(constantName, fromValue, byValue);
941 * @param constantName The specifier for the property being animated
945 private void animatePropertyBy(int constantName, floa argument
[all...]

Completed in 29 milliseconds