Home
last modified time | relevance | path

Searched refs:currentValue (Results 1 – 6 of 6) sorted by relevance

/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
DCamera2RequestSettingsSet.java88 Object currentValue = get(key); in set() local
90 if (!mDictionary.containsKey(key) || !Objects.equals(value, currentValue)) { in set()
/frameworks/ex/common/tests/src/com/android/common/widget/
DGroupingListAdapterTests.java58 String currentValue = cursor.getString(GROUPING_COLUMN_INDEX);
62 if (TextUtils.equals(value, currentValue)) {
70 currentValue = value;
/frameworks/base/core/java/android/app/
DFragment.java2274 Transition currentValue, Transition defaultValue, int id) { in loadTransition() argument
2275 if (currentValue != defaultValue) { in loadTransition()
2276 return currentValue; in loadTransition()
/frameworks/native/services/inputflinger/
DInputReader.h1801 float currentValue; // current value member
1827 this->currentValue = 0; in resetValue()
1844 float newValue, float currentValue, float min, float max);
1846 float newValue, float currentValue, float thresholdValue);
DInputReader.cpp6509 setPointerCoordsAxisValue(&pointerCoords, axis.axisInfo.axis, axis.currentValue); in sync()
6547 axis.newValue, axis.currentValue, axis.min, axis.max)) { in filterAxes()
6548 axis.currentValue = axis.newValue; in filterAxes()
6563 float filter, float newValue, float currentValue, float min, float max) { in hasValueChangedSignificantly() argument
6564 if (newValue != currentValue) { in hasValueChangedSignificantly()
6568 if (fabs(newValue - currentValue) > filter in hasValueChangedSignificantly()
6569 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min) in hasValueChangedSignificantly()
6570 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max) in hasValueChangedSignificantly()
6571 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, 0)) { in hasValueChangedSignificantly()
6579 float filter, float newValue, float currentValue, float thresholdValue) { in hasMovedNearerToValueWithinFilteredRange() argument
[all …]
/frameworks/base/policy/src/com/android/internal/policy/impl/
DPhoneWindow.java3804 private Transition getTransition(Transition currentValue, Transition defaultValue, int id) {
3805 if (currentValue != defaultValue) {
3806 return currentValue;