Searched refs:InputDevice (Results 1 – 8 of 8) sorted by relevance
/third_party/flutter/skia/third_party/externals/sdl/android-project/src/org/libsdl/app/ |
D | SDLActivity.java | 704 int[] ids = InputDevice.getDeviceIds(); in inputGetInputDeviceIds() 708 InputDevice device = InputDevice.getDevice(ids[i]); in inputGetInputDeviceIds() 732 InputDevice device = InputDevice.getDevice(deviceId); in isDeviceSDLJoystick() 739 … return (((sources & InputDevice.SOURCE_CLASS_JOYSTICK) == InputDevice.SOURCE_CLASS_JOYSTICK) || in isDeviceSDLJoystick() 740 ((sources & InputDevice.SOURCE_DPAD) == InputDevice.SOURCE_DPAD) || in isDeviceSDLJoystick() 741 ((sources & InputDevice.SOURCE_GAMEPAD) == InputDevice.SOURCE_GAMEPAD) in isDeviceSDLJoystick() 1260 if ((event.getSource() & InputDevice.SOURCE_KEYBOARD) != 0) { in onKey() 1273 if ((event.getSource() & InputDevice.SOURCE_MOUSE) != 0) { in onKey() 1303 if (event.getSource() == InputDevice.SOURCE_MOUSE && SDLActivity.mSeparateMouseAndTouch) { in onTouch() 1580 public ArrayList<InputDevice.MotionRange> axes; [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/joystick/windows/ |
D | SDL_dinputjoystick.c | 468 IDirectInputDevice8_SetProperty(joystick->hwdata->InputDevice, in EnumDevObjectsCallback() 481 IDirectInputDevice8_SetProperty(joystick->hwdata->InputDevice, in EnumDevObjectsCallback() 575 hwdata->InputDevice); in SDL_DINPUT_JoystickOpen() 587 InputDevice, SDL_HelperWindow, in SDL_DINPUT_JoystickOpen() 596 IDirectInputDevice8_SetDataFormat(joystick->hwdata->InputDevice, in SDL_DINPUT_JoystickOpen() 604 IDirectInputDevice8_GetCapabilities(joystick->hwdata->InputDevice, in SDL_DINPUT_JoystickOpen() 613 result = IDirectInputDevice8_Acquire(joystick->hwdata->InputDevice); in SDL_DINPUT_JoystickOpen() 621 InputDevice, in SDL_DINPUT_JoystickOpen() 630 result = IDirectInputDevice8_Unacquire(joystick->hwdata->InputDevice); in SDL_DINPUT_JoystickOpen() 643 IDirectInputDevice8_SetProperty(joystick->hwdata->InputDevice, in SDL_DINPUT_JoystickOpen() [all …]
|
D | SDL_windowsjoystick_c.h | 72 LPDIRECTINPUTDEVICE8 InputDevice; member
|
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/ |
D | KeyEventChannel.java | 10 import android.view.InputDevice; 125 InputDevice device = InputDevice.getDevice(deviceId); in FlutterKeyEvent()
|
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/android/ |
D | AndroidTouchProcessor.java | 6 import android.view.InputDevice; 152 && event.isFromSource(InputDevice.SOURCE_CLASS_POINTER); in onGenericMotionEvent() 216 …InputDevice.MotionRange pressureRange = event.getDevice().getMotionRange(MotionEvent.AXIS_PRESSURE… in addPointerForIndex()
|
/third_party/FreeBSD/sys/dev/usb/input/ |
D | uhid.c | 87 InputDevice *input_dev; 167 void report_event(InputDevice *input_dev, uint32_t type, uint32_t code, int32_t value) in report_event() 177 void mouse_report_events(InputDevice *input_dev, void *buffer, int len) in mouse_report_events() 866 sc->input_dev = (InputDevice*)zalloc(sizeof(InputDevice)); in uhid_attach()
|
/third_party/flutter/skia/third_party/externals/sdl/src/haptic/windows/ |
D | SDL_dinputhaptic.c | 478 ret = IDirectInputDevice8_GetDeviceInfo(joystick->hwdata->InputDevice, in SDL_DINPUT_JoystickSameHaptic() 496 ret = IDirectInputDevice8_GetDeviceInfo(joystick->hwdata->InputDevice, &joy_instance); in SDL_DINPUT_HapticOpenFromJoystick() 505 return SDL_DINPUT_HapticOpenFromDevice(haptic, joystick->hwdata->InputDevice, SDL_TRUE); in SDL_DINPUT_HapticOpenFromJoystick()
|
/third_party/flutter/flutter/packages/flutter/lib/src/services/ |
D | raw_keyboard_android.dart | 120 /// See <https://developer.android.com/reference/android/view/InputDevice.html#getVendorId()> 126 /// See <https://developer.android.com/reference/android/view/InputDevice.html#getProductId()> 131 // from https://developer.android.com/reference/android/view/InputDevice.html#SOURCE_JOYSTICK
|