/frameworks/native/include/input/ |
D | InputDevice.h | 71 float fuzz; member 93 float min, float max, float flat, float fuzz, float resolution);
|
/frameworks/base/core/java/android/view/ |
D | InputDevice.java | 689 float min, float max, float flat, float fuzz, float resolution) { in addMotionRange() argument 690 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution)); in addMotionRange() 741 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, in MotionRange() argument 748 mFuzz = fuzz; in MotionRange()
|
/frameworks/native/libs/input/ |
D | InputDevice.cpp | 176 float flat, float fuzz, float resolution) { in addMotionRange() argument 177 MotionRange range = { axis, source, min, max, flat, fuzz, resolution }; in addMotionRange()
|
/frameworks/base/core/jni/ |
D | android_view_InputDevice.cpp | 70 range.source, range.min, range.max, range.flat, range.fuzz, range.resolution); in android_view_InputDevice_create()
|
/frameworks/native/services/inputflinger/ |
D | EventHub.h | 87 int32_t fuzz; // error tolerance, eg. fuzz == 4 means value is +/- 4 due to noise member 95 fuzz = 0; in clear()
|
D | InputReader.cpp | 898 name, range.source, range.min, range.max, range.flat, range.fuzz, in dump() 1808 name, axis.minValue, axis.maxValue, axis.flat, axis.fuzz, axis.resolution); in dumpRawAbsoluteAxisInfo() 2653 x.fuzz, x.resolution); in populateDeviceInfo() 2655 y.fuzz, y.resolution); in populateDeviceInfo() 2657 x.fuzz, x.resolution); in populateDeviceInfo() 2659 y.fuzz, y.resolution); in populateDeviceInfo() 3122 mOrientedRanges.touchMajor.fuzz = 0; in configureSurface() 3133 mOrientedRanges.toolMajor.fuzz = 0; in configureSurface() 3144 mOrientedRanges.size.fuzz = 0; in configureSurface() 3168 mOrientedRanges.pressure.fuzz = 0; in configureSurface() [all …]
|
D | InputReader.h | 1797 float fuzz; // normalized error tolerance member 1809 float min, float max, float flat, float fuzz, float resolution) { in initialize() 1820 this->fuzz = fuzz; in initialize()
|
D | EventHub.cpp | 295 outAxisInfo->fuzz = info.fuzz; in getAbsoluteAxisInfo()
|
/frameworks/native/services/inputflinger/tests/ |
D | InputReader_test.cpp | 378 int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) { in addAbsoluteAxis() argument 386 info.fuzz = fuzz; in addAbsoluteAxis() 1445 int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) { in assertMotionRange() argument 1453 ASSERT_NEAR(fuzz, range->fuzz, EPSILON) << "Axis: " << axis << " Source: " << source; in assertMotionRange()
|