Searched defs:fuzz (Results 1 - 6 of 6) sorted by relevance

/frameworks/native/libs/input/
H A DInputDevice.cpp176 float flat, float fuzz, float resolution) {
177 MotionRange range = { axis, source, min, max, flat, fuzz, resolution };
175 addMotionRange(int32_t axis, uint32_t source, float min, float max, float flat, float fuzz, float resolution) argument
/frameworks/native/include/input/
H A DInputDevice.h66 float fuzz; member in struct:android::InputDeviceInfo::MotionRange
88 float min, float max, float flat, float fuzz, float resolution);
/frameworks/base/services/input/
H A DEventHub.h87 int32_t fuzz; // error tolerance, eg. fuzz == 4 means value is +/- 4 due to noise member in struct:android::RawAbsoluteAxisInfo
95 fuzz = 0;
H A DInputReader.h1755 float fuzz; // normalized error tolerance member in struct:android::JoystickInputMapper::Axis
1767 float min, float max, float flat, float fuzz, float resolution) {
1778 this->fuzz = fuzz;
1764 initialize(const RawAbsoluteAxisInfo& rawAxisInfo, const AxisInfo& axisInfo, bool explicitlyMapped, float scale, float offset, float highScale, float highOffset, float min, float max, float flat, float fuzz, float resolution) argument
/frameworks/base/core/java/android/view/
H A DInputDevice.java653 float min, float max, float flat, float fuzz, float resolution) {
654 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution));
705 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, argument
712 mFuzz = fuzz;
881 description.append(" fuzz=").append(range.mFuzz);
652 addMotionRange(int axis, int source, float min, float max, float flat, float fuzz, float resolution) argument
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp368 int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) {
376 info.fuzz = fuzz;
1435 int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) {
1443 ASSERT_NEAR(fuzz, range->fuzz, EPSILON) << "Axis: " << axis << " Source: " << source;
367 addAbsoluteAxis(int32_t deviceId, int axis, int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) argument
1434 assertMotionRange(const InputDeviceInfo& info, int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) argument

Completed in 1613 milliseconds