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

/frameworks/native/libs/input/
H A DInputDevice.cpp179 float flat, float fuzz, float resolution) {
180 MotionRange range = { axis, source, min, max, flat, fuzz, resolution };
178 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.h71 float fuzz; member in struct:android::InputDeviceInfo::MotionRange
95 float min, float max, float flat, float fuzz, float resolution);
/frameworks/native/services/inputflinger/
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.h1946 float fuzz; // normalized error tolerance member in struct:android::JoystickInputMapper::Axis
1958 float min, float max, float flat, float fuzz, float resolution) {
1969 this->fuzz = fuzz;
1955 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.java722 float min, float max, float flat, float fuzz, float resolution) {
723 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution));
782 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, argument
789 mFuzz = fuzz;
961 description.append(" fuzz=").append(range.mFuzz);
721 addMotionRange(int axis, int source, float min, float max, float flat, float fuzz, float resolution) argument
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp377 int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) {
385 info.fuzz = fuzz;
1449 int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) {
1457 ASSERT_NEAR(fuzz, range->fuzz, EPSILON) << "Axis: " << axis << " Source: " << source;
376 addAbsoluteAxis(int32_t deviceId, int axis, int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) argument
1448 assertMotionRange(const InputDeviceInfo& info, int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) argument

Completed in 87 milliseconds