Home
last modified time | relevance | path

Searched refs:MotionRange (Results 1 – 12 of 12) sorted by relevance

/frameworks/native/include/input/
DInputDevice.h60 struct MotionRange { struct
84 const MotionRange* getMotionRange(int32_t axis, uint32_t source) const; argument
89 void addMotionRange(const MotionRange& range);
108 inline const Vector<MotionRange>& getMotionRanges() const { in getMotionRanges()
125 Vector<MotionRange> mMotionRanges;
/frameworks/base/core/java/android/view/
DInputDevice.java58 private final ArrayList<MotionRange> mMotionRanges = new ArrayList<MotionRange>();
605 public MotionRange getMotionRange(int axis) { in getMotionRange()
608 final MotionRange range = mMotionRanges.get(i); in getMotionRange()
630 public MotionRange getMotionRange(int axis, int source) { in getMotionRange()
633 final MotionRange range = mMotionRanges.get(i); in getMotionRange()
647 public List<MotionRange> getMotionRanges() { in getMotionRanges()
654 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution)); in addMotionRange()
696 public static final class MotionRange { class in InputDevice
705 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, in MotionRange() method in InputDevice.MotionRange
820 MotionRange range = mMotionRanges.get(i); in writeToParcel()
[all …]
DViewRootImpl.java4547 InputDevice.MotionRange xRange = device.getMotionRange(MotionEvent.AXIS_X); in process()
4548 InputDevice.MotionRange yRange = device.getMotionRange(MotionEvent.AXIS_Y); in process()
/frameworks/native/libs/input/
DInputDevice.cpp159 const InputDeviceInfo::MotionRange* InputDeviceInfo::getMotionRange( in getMotionRange()
163 const MotionRange& range = mMotionRanges.itemAt(i); in getMotionRange()
177 MotionRange range = { axis, source, min, max, flat, fuzz, resolution }; in addMotionRange()
181 void InputDeviceInfo::addMotionRange(const MotionRange& range) { in addMotionRange()
/frameworks/base/core/jni/
Dandroid_view_InputDevice.cpp66 const Vector<InputDeviceInfo::MotionRange>& ranges = deviceInfo.getMotionRanges(); in android_view_InputDevice_create()
68 const InputDeviceInfo::MotionRange& range = ranges.itemAt(i); in android_view_InputDevice_create()
/frameworks/base/services/input/
DInputReader.h1393 InputDeviceInfo::MotionRange x;
1394 InputDeviceInfo::MotionRange y;
1395 InputDeviceInfo::MotionRange pressure;
1398 InputDeviceInfo::MotionRange size;
1401 InputDeviceInfo::MotionRange touchMajor;
1402 InputDeviceInfo::MotionRange touchMinor;
1405 InputDeviceInfo::MotionRange toolMajor;
1406 InputDeviceInfo::MotionRange toolMinor;
1409 InputDeviceInfo::MotionRange orientation;
1412 InputDeviceInfo::MotionRange distance;
[all …]
DInputReader.cpp872 const Vector<InputDeviceInfo::MotionRange>& ranges = deviceInfo.getMotionRanges(); in dump()
876 const InputDeviceInfo::MotionRange& range = ranges.itemAt(i); in dump()
2624 const InputDeviceInfo::MotionRange& x = mOrientedRanges.x; in populateDeviceInfo()
2625 const InputDeviceInfo::MotionRange& y = mOrientedRanges.y; in populateDeviceInfo()
/frameworks/base/docs/html/sdk/api_diff/12/
DmissingSinces.txt29 NO DOC BLOCK: android.view.InputDevice.MotionRange Method getAxis()
46 NO DOC BLOCK: android.view.InputDevice.MotionRange Method getSource()
/frameworks/base/docs/html/about/versions/
Dandroid-3.1.jd296 the {@link android.view.InputDevice.MotionRange} object specifies the source for
/frameworks/base/services/input/tests/
DInputReader_test.cpp1436 const InputDeviceInfo::MotionRange* range = info.getMotionRange(axis, source); in assertMotionRange()
/frameworks/base/docs/html/
Dsitemap.txt1196 http://developer.android.com/reference/android/view/InputDevice.MotionRange.html
6322 http://developer.android.com/sdk/api_diff/12/changes/android.view.InputDevice.MotionRange.html
/frameworks/base/api/
Dcurrent.txt26498 method public android.view.InputDevice.MotionRange getMotionRange(int);
26499 method public android.view.InputDevice.MotionRange getMotionRange(int, int);
26500 method public java.util.List<android.view.InputDevice.MotionRange> getMotionRanges();
26543 public static final class InputDevice.MotionRange {