Home | History | Annotate | Download | only in view

Lines Matching defs:InputDevice

45 public final class InputDevice implements Parcelable {
347 public static final Parcelable.Creator<InputDevice> CREATOR =
348 new Parcelable.Creator<InputDevice>() {
349 public InputDevice createFromParcel(Parcel in) {
350 return new InputDevice(in);
352 public InputDevice[] newArray(int size) {
353 return new InputDevice[size];
358 private InputDevice(int id, int generation, int controllerNumber, String name, int vendorId,
377 private InputDevice(Parcel in) {
408 public static InputDevice getDevice(int id) {
514 * It is possible for there to be multiple {@link InputDevice} instances that have the
516 * human input device registers multiple {@link InputDevice} instances (HID collections)
524 * {@link InputDevice} instance at runtime use the id returned by {@link #getId()}.
593 * type such as {@link InputDevice#SOURCE_MOUSE}, a more generic device class, such as
594 * {@link InputDevice#SOURCE_CLASS_POINTER}, or a combination of sources bitwise ORed together.
730 * @see InputDevice#getMotionRange(int)
773 * such as {@link InputDevice#SOURCE_TOUCH_NAVIGATION}, or a more generic device class,
774 * such as {@link InputDevice#SOURCE_CLASS_POINTER}.