Home
last modified time | relevance | path

Searched refs:DeviceEvent (Results 1 – 25 of 733) sorted by relevance

12345678910>>...30

/dports/games/palomino/palomino/src/input/
H A Ddevice.hh40 template<class DeviceEvent>
91 template<class DeviceEvent>
103 template<class DeviceEvent>
117 template<class DeviceEvent>
144 template<class DeviceEvent>
158 template<class DeviceEvent>
160 Device<DeviceEvent>::Enqueue( const DeviceEvent& event ) in Enqueue()
181 template<class DeviceEvent>
183 Device<DeviceEvent>::PeekQueue( DeviceEvent& event ) const in PeekQueue()
204 Device<DeviceEvent>::Dequeue( DeviceEvent& event ) in Dequeue()
[all …]
/dports/devel/simgear/simgear-2020.3.11/simgear/canvas/events/
H A DDeviceEvent.cxx31 DeviceEvent::DeviceEvent(): in DeviceEvent() function in simgear::canvas::DeviceEvent
38 DeviceEvent::DeviceEvent(const osgGA::GUIEventAdapter& ea): in DeviceEvent() function in simgear::canvas::DeviceEvent
45 bool DeviceEvent::ctrlKey() const in ctrlKey()
51 bool DeviceEvent::shiftKey() const in shiftKey()
57 bool DeviceEvent::altKey() const in altKey()
63 bool DeviceEvent::metaKey() const in metaKey()
H A DDeviceEvent.hxx35 class DeviceEvent: class
40 DeviceEvent();
43 DeviceEvent(const osgGA::GUIEventAdapter& ea);
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/events/x/
H A Devents_x_utils.cc249 case x11::Input::DeviceEvent::TouchBegin: in GetTouchEventType()
252 case x11::Input::DeviceEvent::TouchUpdate: in GetTouchEventType()
255 case x11::Input::DeviceEvent::TouchEnd: in GetTouchEventType()
263 case x11::Input::DeviceEvent::ButtonPress: in GetTouchEventType()
267 case x11::Input::DeviceEvent::Motion: in GetTouchEventType()
437 case x11::Input::DeviceEvent::TouchEnd: in EventTypeFromXEvent()
452 case x11::Input::DeviceEvent::Motion: { in EventTypeFromXEvent()
480 case x11::Input::DeviceEvent::KeyPress: in EventTypeFromXEvent()
515 case x11::Input::DeviceEvent::TouchEnd: in EventFlagsFromXEvent()
537 case x11::Input::DeviceEvent::Motion: in EventFlagsFromXEvent()
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-alexaforbusiness/include/aws/alexaforbusiness/model/
H A DDeviceEvent.h33 class AWS_ALEXAFORBUSINESS_API DeviceEvent
36 DeviceEvent();
37 DeviceEvent(Aws::Utils::Json::JsonView jsonValue);
38 DeviceEvent& operator=(Aws::Utils::Json::JsonView jsonValue);
65 inline DeviceEvent& WithType(const DeviceEventType& value) { SetType(value); return *this;} in WithType()
70 … inline DeviceEvent& WithType(DeviceEventType&& value) { SetType(std::move(value)); return *this;} in WithType()
101 inline DeviceEvent& WithValue(const Aws::String& value) { SetValue(value); return *this;} in WithValue()
106 inline DeviceEvent& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} in WithValue()
111 inline DeviceEvent& WithValue(const char* value) { SetValue(value); return *this;} in WithValue()
137 …inline DeviceEvent& WithTimestamp(const Aws::Utils::DateTime& value) { SetTimestamp(value); return… in WithTimestamp()
[all …]
H A DListDeviceEventsResult.h40 inline const Aws::Vector<DeviceEvent>& GetDeviceEvents() const{ return m_deviceEvents; } in GetDeviceEvents()
45 inline void SetDeviceEvents(const Aws::Vector<DeviceEvent>& value) { m_deviceEvents = value; } in SetDeviceEvents()
50 …inline void SetDeviceEvents(Aws::Vector<DeviceEvent>&& value) { m_deviceEvents = std::move(value);… in SetDeviceEvents()
55 …inline ListDeviceEventsResult& WithDeviceEvents(const Aws::Vector<DeviceEvent>& value) { SetDevice… in WithDeviceEvents()
60 …inline ListDeviceEventsResult& WithDeviceEvents(Aws::Vector<DeviceEvent>&& value) { SetDeviceEvent… in WithDeviceEvents()
65 …inline ListDeviceEventsResult& AddDeviceEvents(const DeviceEvent& value) { m_deviceEvents.push_bac… in AddDeviceEvents()
70 …inline ListDeviceEventsResult& AddDeviceEvents(DeviceEvent&& value) { m_deviceEvents.push_back(std… in AddDeviceEvents()
110 Aws::Vector<DeviceEvent> m_deviceEvents;
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-iot1click-devices/include/aws/iot1click-devices/model/
H A DDeviceEvent.h27 class AWS_IOT1CLICKDEVICESSERVICE_API DeviceEvent
30 DeviceEvent();
31 DeviceEvent(Aws::Utils::Json::JsonView jsonValue);
32 DeviceEvent& operator=(Aws::Utils::Json::JsonView jsonValue);
59 inline DeviceEvent& WithDevice(const Device& value) { SetDevice(value); return *this;} in WithDevice()
64 inline DeviceEvent& WithDevice(Device&& value) { SetDevice(std::move(value)); return *this;} in WithDevice()
95 inline DeviceEvent& WithStdEvent(const Aws::String& value) { SetStdEvent(value); return *this;} in WithStdEvent()
100 …inline DeviceEvent& WithStdEvent(Aws::String&& value) { SetStdEvent(std::move(value)); return *thi… in WithStdEvent()
105 inline DeviceEvent& WithStdEvent(const char* value) { SetStdEvent(value); return *this;} in WithStdEvent()
H A DListDeviceEventsResult.h42 inline const Aws::Vector<DeviceEvent>& GetEvents() const{ return m_events; } in GetEvents()
49 inline void SetEvents(const Aws::Vector<DeviceEvent>& value) { m_events = value; } in SetEvents()
56 inline void SetEvents(Aws::Vector<DeviceEvent>&& value) { m_events = std::move(value); } in SetEvents()
63 …inline ListDeviceEventsResult& WithEvents(const Aws::Vector<DeviceEvent>& value) { SetEvents(value… in WithEvents()
70 …inline ListDeviceEventsResult& WithEvents(Aws::Vector<DeviceEvent>&& value) { SetEvents(std::move(… in WithEvents()
77 …inline ListDeviceEventsResult& AddEvents(const DeviceEvent& value) { m_events.push_back(value); re… in AddEvents()
84 …inline ListDeviceEventsResult& AddEvents(DeviceEvent&& value) { m_events.push_back(std::move(value… in AddEvents()
124 Aws::Vector<DeviceEvent> m_events;
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-iot1click-devices/source/model/
H A DDeviceEvent.cpp21 DeviceEvent::DeviceEvent() : in DeviceEvent() function in Aws::IoT1ClickDevicesService::Model::DeviceEvent
27 DeviceEvent::DeviceEvent(JsonView jsonValue) : in DeviceEvent() function in Aws::IoT1ClickDevicesService::Model::DeviceEvent
34 DeviceEvent& DeviceEvent::operator =(JsonView jsonValue) in operator =()
53 JsonValue DeviceEvent::Jsonize() const in Jsonize()
/dports/games/abstreet/winit-a87ae2661263ff241e8868cbf3ce65aab205863a/src/platform_impl/macos/
H A Dapp.rs13 use crate::event::{DeviceEvent, ElementState, Event};
72 events.push_back(EventWrapper::StaticEvent(Event::DeviceEvent { in maybe_dispatch_device_event()
74 event: DeviceEvent::Motion { in maybe_dispatch_device_event()
82 events.push_back(EventWrapper::StaticEvent(Event::DeviceEvent { in maybe_dispatch_device_event()
84 event: DeviceEvent::Motion { in maybe_dispatch_device_event()
92 events.push_back(EventWrapper::StaticEvent(Event::DeviceEvent { in maybe_dispatch_device_event()
94 event: DeviceEvent::MouseMotion { in maybe_dispatch_device_event()
120 events.push_back(EventWrapper::StaticEvent(Event::DeviceEvent { in maybe_dispatch_device_event()
122 event: DeviceEvent::Button { in maybe_dispatch_device_event()
133 events.push_back(EventWrapper::StaticEvent(Event::DeviceEvent { in maybe_dispatch_device_event()
[all …]
/dports/x11/alacritty/alacritty-0.9.0/cargo-crates/winit-0.24.0/src/platform_impl/macos/
H A Dapp.rs13 use crate::event::{DeviceEvent, ElementState, Event};
72 events.push_back(EventWrapper::StaticEvent(Event::DeviceEvent { in maybe_dispatch_device_event()
74 event: DeviceEvent::Motion { in maybe_dispatch_device_event()
82 events.push_back(EventWrapper::StaticEvent(Event::DeviceEvent { in maybe_dispatch_device_event()
84 event: DeviceEvent::Motion { in maybe_dispatch_device_event()
92 events.push_back(EventWrapper::StaticEvent(Event::DeviceEvent { in maybe_dispatch_device_event()
94 event: DeviceEvent::MouseMotion { in maybe_dispatch_device_event()
120 events.push_back(EventWrapper::StaticEvent(Event::DeviceEvent { in maybe_dispatch_device_event()
122 event: DeviceEvent::Button { in maybe_dispatch_device_event()
133 events.push_back(EventWrapper::StaticEvent(Event::DeviceEvent { in maybe_dispatch_device_event()
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-alexaforbusiness/source/model/
H A DDeviceEvent.cpp21 DeviceEvent::DeviceEvent() : in DeviceEvent() function in Aws::AlexaForBusiness::Model::DeviceEvent
29 DeviceEvent::DeviceEvent(JsonView jsonValue) : in DeviceEvent() function in Aws::AlexaForBusiness::Model::DeviceEvent
38 DeviceEvent& DeviceEvent::operator =(JsonView jsonValue) in operator =()
64 JsonValue DeviceEvent::Jsonize() const in Jsonize()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/events/ozone/device/udev/
H A Ddevice_manager_udev.cc124 std::unique_ptr<DeviceEvent> event = ProcessMessage(device.get()); in ScanDevices()
148 std::unique_ptr<DeviceEvent> event = ProcessMessage(device.get()); in OnFileCanReadWithoutBlocking()
158 std::unique_ptr<DeviceEvent> DeviceManagerUdev::ProcessMessage( in ProcessMessage()
168 DeviceEvent::DeviceType device_type; in ProcessMessage()
171 device_type = DeviceEvent::INPUT; in ProcessMessage()
175 device_type = DeviceEvent::DISPLAY; in ProcessMessage()
179 DeviceEvent::ActionType action_type; in ProcessMessage()
181 action_type = DeviceEvent::ADD; in ProcessMessage()
183 action_type = DeviceEvent::REMOVE; in ProcessMessage()
185 action_type = DeviceEvent::CHANGE; in ProcessMessage()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/events/ozone/device/udev/
H A Ddevice_manager_udev.cc125 std::unique_ptr<DeviceEvent> event = ProcessMessage(device.get()); in ScanDevices()
149 std::unique_ptr<DeviceEvent> event = ProcessMessage(device.get()); in OnFileCanReadWithoutBlocking()
159 std::unique_ptr<DeviceEvent> DeviceManagerUdev::ProcessMessage( in ProcessMessage()
169 DeviceEvent::DeviceType device_type; in ProcessMessage()
172 device_type = DeviceEvent::INPUT; in ProcessMessage()
176 device_type = DeviceEvent::DISPLAY; in ProcessMessage()
180 DeviceEvent::ActionType action_type; in ProcessMessage()
182 action_type = DeviceEvent::ADD; in ProcessMessage()
184 action_type = DeviceEvent::REMOVE; in ProcessMessage()
186 action_type = DeviceEvent::CHANGE; in ProcessMessage()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/events/ozone/device/
H A Ddevice_manager_manual.cc58 DeviceEvent event(DeviceEvent::INPUT, DeviceEvent::ADD, path); in AddObserver()
103 DeviceEvent event(DeviceEvent::INPUT, DeviceEvent::ADD, path); in OnDevicesScanned()
114 DeviceEvent event(DeviceEvent::INPUT, DeviceEvent::REMOVE, path); in OnDevicesScanned()
H A Ddevice_event.h14 class COMPONENT_EXPORT(EVENTS_OZONE) DeviceEvent { in COMPONENT_EXPORT()
27 DeviceEvent(DeviceType type, ActionType action, const base::FilePath& path); in COMPONENT_EXPORT()
38 DISALLOW_COPY_AND_ASSIGN(DeviceEvent); in COMPONENT_EXPORT()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/events/ozone/device/
H A Ddevice_manager_manual.cc58 DeviceEvent event(DeviceEvent::INPUT, DeviceEvent::ADD, path); in AddObserver()
106 DeviceEvent event(DeviceEvent::INPUT, DeviceEvent::ADD, path); in OnDevicesScanned()
117 DeviceEvent event(DeviceEvent::INPUT, DeviceEvent::REMOVE, path); in OnDevicesScanned()
/dports/devel/godot2-tools/godot-2.1.6-stable/platform/android/java/src/org/godotengine/godot/input/
H A DInputManagerV9.java138 DeviceEvent odc = DeviceEvent.getDeviceEvent(why, deviceId, listener); in notifyListeners()
144 private static class DeviceEvent implements Runnable { class in InputManagerV9
148 private static Queue<DeviceEvent> sEventQueue = new ArrayDeque<DeviceEvent>();
150 private DeviceEvent() { in DeviceEvent() method in InputManagerV9.DeviceEvent
153 static DeviceEvent getDeviceEvent(int messageType, int id, in getDeviceEvent()
155 DeviceEvent curChanged = sEventQueue.poll(); in getDeviceEvent()
157 curChanged = new DeviceEvent(); in getDeviceEvent()
/dports/devel/godot2/godot-2.1.6-stable/platform/android/java/src/org/godotengine/godot/input/
H A DInputManagerV9.java138 DeviceEvent odc = DeviceEvent.getDeviceEvent(why, deviceId, listener); in notifyListeners()
144 private static class DeviceEvent implements Runnable { class in InputManagerV9
148 private static Queue<DeviceEvent> sEventQueue = new ArrayDeque<DeviceEvent>();
150 private DeviceEvent() { in DeviceEvent() method in InputManagerV9.DeviceEvent
153 static DeviceEvent getDeviceEvent(int messageType, int id, in getDeviceEvent()
155 DeviceEvent curChanged = sEventQueue.poll(); in getDeviceEvent()
157 curChanged = new DeviceEvent(); in getDeviceEvent()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/events/devices/x11/
H A Dtouch_factory_x11.cc147 const x11::Input::DeviceEvent& xiev) { in ShouldProcessDeviceEvent()
150 if (xiev.opcode == x11::Input::DeviceEvent::TouchBegin || in ShouldProcessDeviceEvent()
151 xiev.opcode == x11::Input::DeviceEvent::TouchUpdate || in ShouldProcessDeviceEvent()
152 xiev.opcode == x11::Input::DeviceEvent::TouchEnd) { in ShouldProcessDeviceEvent()
171 if (xiev.opcode == x11::Input::DeviceEvent::KeyPress || in ShouldProcessDeviceEvent()
172 xiev.opcode == x11::Input::DeviceEvent::KeyRelease) { in ShouldProcessDeviceEvent()
213 SetXinputMask(mask_data, x11::Input::DeviceEvent::TouchBegin); in SetupXI2ForXWindow()
214 SetXinputMask(mask_data, x11::Input::DeviceEvent::TouchUpdate); in SetupXI2ForXWindow()
215 SetXinputMask(mask_data, x11::Input::DeviceEvent::TouchEnd); in SetupXI2ForXWindow()
219 SetXinputMask(mask_data, x11::Input::DeviceEvent::Motion); in SetupXI2ForXWindow()
[all …]
/dports/net-im/mtxclient/mtxclient-0.6.0/include/mtx/events/
H A Dcollections.hpp57 using DeviceEvents = std::variant<events::DeviceEvent<msgs::RoomKey>,
58 events::DeviceEvent<msgs::ForwardedRoomKey>,
59 events::DeviceEvent<msgs::KeyRequest>,
60 events::DeviceEvent<msgs::OlmEncrypted>,
61 events::DeviceEvent<msgs::Encrypted>,
62 events::DeviceEvent<msgs::Dummy>,
69 events::DeviceEvent<msgs::KeyVerificationKey>,
70 events::DeviceEvent<msgs::KeyVerificationMac>,
71 events::DeviceEvent<msgs::SecretRequest>,
72 events::DeviceEvent<msgs::SecretSend>,
[all …]
/dports/net-im/mtxclient/mtxclient-0.6.0/lib/structs/events/
H A Dcollections.cpp78 MTXCLIENT_INSTANTIATE_JSON_FUNCTIONS(events::DeviceEvent, msgs::Encrypted)
79 MTXCLIENT_INSTANTIATE_JSON_FUNCTIONS(events::DeviceEvent, msgs::OlmEncrypted)
86 MTXCLIENT_INSTANTIATE_JSON_FUNCTIONS(events::DeviceEvent, msgs::KeyVerificationKey)
87 MTXCLIENT_INSTANTIATE_JSON_FUNCTIONS(events::DeviceEvent, msgs::KeyVerificationMac)
88 MTXCLIENT_INSTANTIATE_JSON_FUNCTIONS(events::DeviceEvent, msgs::RoomKey)
89 MTXCLIENT_INSTANTIATE_JSON_FUNCTIONS(events::DeviceEvent, msgs::ForwardedRoomKey)
90 MTXCLIENT_INSTANTIATE_JSON_FUNCTIONS(events::DeviceEvent, msgs::KeyRequest)
91 MTXCLIENT_INSTANTIATE_JSON_FUNCTIONS(events::DeviceEvent, msgs::SecretRequest)
92 MTXCLIENT_INSTANTIATE_JSON_FUNCTIONS(events::DeviceEvent, msgs::SecretSend)
93 MTXCLIENT_INSTANTIATE_JSON_FUNCTIONS(events::DeviceEvent, msgs::Dummy)
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/events/test/
H A Devents_test_utils_x11.cc60 return x11::Input::DeviceEvent::KeyPress; in XIKeyEventType()
62 return x11::Input::DeviceEvent::KeyRelease; in XIKeyEventType()
73 return x11::Input::DeviceEvent::ButtonPress; in XIButtonEventType()
75 return x11::Input::DeviceEvent::ButtonRelease; in XIButtonEventType()
99 void InitValuatorsForXIDeviceEvent(x11::Input::DeviceEvent* devev) { in InitValuatorsForXIDeviceEvent()
115 x11::Input::DeviceEvent event; in CreateXInput2Event()
118 event.opcode = static_cast<x11::Input::DeviceEvent::Opcode>(evtype); in CreateXInput2Event()
189 auto* dev_event = event_.As<x11::Input::DeviceEvent>(); in InitGenericKeyEvent()
203 auto* dev_event = event_.As<x11::Input::DeviceEvent>(); in InitGenericButtonEvent()
246 event_ = CreateXInput2Event(deviceid, x11::Input::DeviceEvent::Motion, in InitFlingScrollEvent()
[all …]
/dports/games/abstreet/winit-a87ae2661263ff241e8868cbf3ce65aab205863a/examples/
H A Dcursor_grab.rs2 event::{DeviceEvent, ElementState, Event, KeyboardInput, ModifiersState, WindowEvent},
44 Event::DeviceEvent { event, .. } => match event { in main()
45 DeviceEvent::MouseMotion { delta } => println!("mouse moved: {:?}", delta), in main()
46 DeviceEvent::Button { button, state } => match state { in main()
/dports/x11/alacritty/alacritty-0.9.0/cargo-crates/winit-0.24.0/examples/
H A Dcursor_grab.rs3 event::{DeviceEvent, ElementState, Event, KeyboardInput, ModifiersState, WindowEvent},
45 Event::DeviceEvent { event, .. } => match event { in main()
46 DeviceEvent::MouseMotion { delta } => println!("mouse moved: {:?}", delta), in main()
47 DeviceEvent::Button { button, state } => match state { in main()

12345678910>>...30