Home
last modified time | relevance | path

Searched refs:addMotionRange (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/jni/
Dandroid_view_InputDevice.cpp34 jmethodID addMotionRange; member
69 env->CallVoidMethod(inputDeviceObj.get(), gInputDeviceClassInfo.addMotionRange, range.axis, in android_view_InputDevice_create()
97 GET_METHOD_ID(gInputDeviceClassInfo.addMotionRange, gInputDeviceClassInfo.clazz, in register_android_view_InputDevice()
/frameworks/native/include/input/
DInputDevice.h87 void addMotionRange(int32_t axis, uint32_t source,
89 void addMotionRange(const MotionRange& range);
/frameworks/native/libs/input/
DInputDevice.cpp175 void InputDeviceInfo::addMotionRange(int32_t axis, uint32_t source, float min, float max, in addMotionRange() function in android::InputDeviceInfo
181 void InputDeviceInfo::addMotionRange(const MotionRange& range) { in addMotionRange() function in android::InputDeviceInfo
/frameworks/base/core/java/android/view/
DInputDevice.java386 addMotionRange(axis, in.readInt(), in.readFloat(), in.readFloat(), in.readFloat(), in InputDevice()
652 private void addMotionRange(int axis, int source, in addMotionRange() method in InputDevice
/frameworks/base/services/input/
DInputReader.cpp2252 info->addMotionRange(AMOTION_EVENT_AXIS_X, mSource, minX, maxX, 0.0f, 0.0f, 0.0f); in populateDeviceInfo()
2253 info->addMotionRange(AMOTION_EVENT_AXIS_Y, mSource, minY, maxY, 0.0f, 0.0f, 0.0f); in populateDeviceInfo()
2256 info->addMotionRange(AMOTION_EVENT_AXIS_X, mSource, -1.0f, 1.0f, 0.0f, mXScale, 0.0f); in populateDeviceInfo()
2257 info->addMotionRange(AMOTION_EVENT_AXIS_Y, mSource, -1.0f, 1.0f, 0.0f, mYScale, 0.0f); in populateDeviceInfo()
2259 info->addMotionRange(AMOTION_EVENT_AXIS_PRESSURE, mSource, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f); in populateDeviceInfo()
2262 info->addMotionRange(AMOTION_EVENT_AXIS_VSCROLL, mSource, -1.0f, 1.0f, 0.0f, 0.0f, 0.0f); in populateDeviceInfo()
2265 info->addMotionRange(AMOTION_EVENT_AXIS_HSCROLL, mSource, -1.0f, 1.0f, 0.0f, 0.0f, 0.0f); in populateDeviceInfo()
2585 info->addMotionRange(mOrientedRanges.x); in populateDeviceInfo()
2586 info->addMotionRange(mOrientedRanges.y); in populateDeviceInfo()
2587 info->addMotionRange(mOrientedRanges.pressure); in populateDeviceInfo()
[all …]
DInputReader.h1809 static void addMotionRange(int32_t axisId, const Axis& axis, InputDeviceInfo* info);