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

/frameworks/base/services/input/
H A DInputReader.cpp5971 pointerCoords.setAxisValue(axis.axisInfo.axis, axis.currentValue);
5995 axis.newValue, axis.currentValue, axis.min, axis.max)) {
5996 axis.currentValue = axis.newValue;
6011 float filter, float newValue, float currentValue, float min, float max) {
6012 if (newValue != currentValue) {
6016 if (fabs(newValue - currentValue) > filter
6017 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min)
6018 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max)
6019 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, 0)) {
6027 float filter, float newValue, float currentValue, floa
6010 hasValueChangedSignificantly( float filter, float newValue, float currentValue, float min, float max) argument
6026 hasMovedNearerToValueWithinFilteredRange( float filter, float newValue, float currentValue, float thresholdValue) argument
[all...]
H A DInputReader.h1593 float currentValue; // current value member in struct:android::JoystickInputMapper::Axis
1618 this->currentValue = 0;
1635 float newValue, float currentValue, float min, float max);
1637 float newValue, float currentValue, float thresholdValue);

Completed in 86 milliseconds