Searched refs:currentValue (Results 1 – 7 of 7) sorted by relevance
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/ |
D | Camera2RequestSettingsSet.java | 88 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/ |
D | GroupingListAdapterTests.java | 58 String currentValue = cursor.getString(GROUPING_COLUMN_INDEX); 62 if (TextUtils.equals(value, currentValue)) { 70 currentValue = value;
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/ |
D | Binding.java | 131 final String currentValue = requiresOldValue() in toJavaCode() local 134 return getSetterCall().toJava(bindingComponent, targetViewName, currentValue, argCode); in toJavaCode()
|
/frameworks/base/core/java/android/app/ |
D | Fragment.java | 2441 Transition currentValue, Transition defaultValue, int id) { in loadTransition() argument 2442 if (currentValue != defaultValue) { in loadTransition() 2443 return currentValue; in loadTransition()
|
/frameworks/native/services/inputflinger/ |
D | InputReader.h | 1950 float currentValue; // current value member 1976 this->currentValue = 0; in resetValue() 1993 float newValue, float currentValue, float min, float max); 1995 float newValue, float currentValue, float thresholdValue);
|
D | InputReader.cpp | 6977 setPointerCoordsAxisValue(&pointerCoords, axis.axisInfo.axis, axis.currentValue); in sync() 7015 axis.newValue, axis.currentValue, axis.min, axis.max)) { in filterAxes() 7016 axis.currentValue = axis.newValue; in filterAxes() 7031 float filter, float newValue, float currentValue, float min, float max) { in hasValueChangedSignificantly() argument 7032 if (newValue != currentValue) { in hasValueChangedSignificantly() 7036 if (fabs(newValue - currentValue) > filter in hasValueChangedSignificantly() 7037 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min) in hasValueChangedSignificantly() 7038 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max) in hasValueChangedSignificantly() 7039 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, 0)) { in hasValueChangedSignificantly() 7047 float filter, float newValue, float currentValue, float thresholdValue) { in hasMovedNearerToValueWithinFilteredRange() argument [all …]
|
/frameworks/base/core/java/com/android/internal/policy/ |
D | PhoneWindow.java | 4108 private Transition getTransition(Transition currentValue, Transition defaultValue, int id) { 4109 if (currentValue != defaultValue) { 4110 return currentValue;
|