Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DFlingAnimationUtils.java106 public void apply(Animator animator, float currValue, float endValue, float velocity) { in apply() argument
107 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue)); in apply()
119 public void apply(ViewPropertyAnimator animator, float currValue, float endValue, in apply() argument
121 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue)); in apply()
135 public void apply(Animator animator, float currValue, float endValue, float velocity, in apply() argument
137 AnimatorProperties properties = getProperties(currValue, endValue, velocity, in apply()
154 public void apply(ViewPropertyAnimator animator, float currValue, float endValue, in apply() argument
156 AnimatorProperties properties = getProperties(currValue, endValue, velocity, in apply()
162 private AnimatorProperties getProperties(float currValue, in getProperties() argument
165 * Math.sqrt(Math.abs(endValue - currValue) / maxDistance)); in getProperties()
[all …]
/frameworks/support/tv-provider/src/main/java/androidx/tvprovider/media/tv/
DPreviewProgram.java124 Object currValue = mValues.get(key); in hasAnyUpdatedValues() local
125 if (!Objects.deepEquals(updateValue, currValue)) { in hasAnyUpdatedValues()
DWatchNextProgram.java147 Object currValue = mValues.get(key); in hasAnyUpdatedValues() local
148 if (!Objects.deepEquals(updateValue, currValue)) { in hasAnyUpdatedValues()
DPreviewChannel.java276 Object currValue = mValues.get(key); in hasAnyUpdatedValues() local
277 if (!Objects.deepEquals(updateValue, currValue)) { in hasAnyUpdatedValues()
/frameworks/base/core/java/android/content/pm/
DPackageParser.java2510 final String currValue = SystemProperties.get(propName); in checkOverlayRequiredSystemProperty() local
2511 return (currValue != null && currValue.equals(propValue)); in checkOverlayRequiredSystemProperty()