Home
last modified time | relevance | path

Searched refs:currValue (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DFlingAnimationUtils.java110 public void apply(Animator animator, float currValue, float endValue, float velocity) { in apply() argument
111 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue)); in apply()
123 public void apply(ViewPropertyAnimator animator, float currValue, float endValue, in apply() argument
125 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue)); in apply()
139 public void apply(Animator animator, float currValue, float endValue, float velocity, in apply() argument
141 AnimatorProperties properties = getProperties(currValue, endValue, velocity, in apply()
158 public void apply(ViewPropertyAnimator animator, float currValue, float endValue, in apply() argument
160 AnimatorProperties properties = getProperties(currValue, endValue, velocity, in apply()
166 private AnimatorProperties getProperties(float currValue, in getProperties() argument
169 * Math.sqrt(Math.abs(endValue - currValue) / maxDistance)); in getProperties()
[all …]
/frameworks/base/core/java/android/content/pm/
DPackageParser.java2558 final String currValue = SystemProperties.get(propName); in checkOverlayRequiredSystemProperty() local
2559 return (currValue != null && currValue.equals(propValue)); in checkOverlayRequiredSystemProperty()