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

/frameworks/base/core/java/android/app/
H A DFragment.java2441 Transition currentValue, Transition defaultValue, int id) {
2442 if (currentValue != defaultValue) {
2443 return currentValue;
2440 loadTransition(Context context, TypedArray typedArray, Transition currentValue, Transition defaultValue, int id) argument
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java4108 private Transition getTransition(Transition currentValue, Transition defaultValue, int id) { argument
4109 if (currentValue != defaultValue) {
4110 return currentValue;
/frameworks/native/services/inputflinger/
H A DInputReader.cpp6977 setPointerCoordsAxisValue(&pointerCoords, axis.axisInfo.axis, axis.currentValue);
7015 axis.newValue, axis.currentValue, axis.min, axis.max)) {
7016 axis.currentValue = axis.newValue;
7031 float filter, float newValue, float currentValue, float min, float max) {
7032 if (newValue != currentValue) {
7036 if (fabs(newValue - currentValue) > filter
7037 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min)
7038 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max)
7039 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, 0)) {
7047 float filter, float newValue, float currentValue, floa
7030 hasValueChangedSignificantly( float filter, float newValue, float currentValue, float min, float max) argument
7046 hasMovedNearerToValueWithinFilteredRange( float filter, float newValue, float currentValue, float thresholdValue) argument
[all...]
H A DInputReader.h1950 float currentValue; // current value member in struct:android::JoystickInputMapper::Axis
1976 this->currentValue = 0;
1993 float newValue, float currentValue, float min, float max);
1995 float newValue, float currentValue, float thresholdValue);

Completed in 170 milliseconds