HomeSort by relevance Sort by last modified time
    Searched refs:WebInputEvent (Results 26 - 50 of 191) sorted by null

12 3 4 5 6 7 8

  /external/chromium_org/content/browser/renderer_host/input/
immediate_input_router_unittest.cc 27 using WebKit::WebInputEvent;
37 const WebInputEvent* GetInputEventFromMessage(const IPC::Message& message) {
43 return reinterpret_cast<const WebInputEvent*>(data);
123 const WebInputEvent& input_event,
128 // Called each time a WebInputEvent IPC is sent.
133 // Called each time a WebInputEvent ACK IPC is received.
362 void SendInputEventACK(WebInputEvent::Type type,
370 void SimulateKeyboardEvent(WebInputEvent::Type type) {
383 wheel_event.type = WebInputEvent::MouseWheel;
397 mouse_event.type = WebInputEvent::MouseMove
    [all...]
web_input_event_util_posix.cc 25 WebKit::WebInputEvent::Modifiers GetLocationModifiersFromWindowsKeyCode(
39 return static_cast<WebKit::WebInputEvent::Modifiers>(0);
immediate_input_router.cc 30 using WebKit::WebInputEvent;
117 if (mouse_event.event.type == WebInputEvent::MouseDown &&
121 if (mouse_event.event.type == WebInputEvent::MouseUp &&
225 if (mouse_event.event.type == WebInputEvent::MouseMove) {
335 const WebInputEvent& input_event,
345 const WebInputEvent& input_event,
369 if (input_event.type == WebKit::WebInputEvent::MouseMove) {
374 } else if (input_event.type == WebKit::WebInputEvent::MouseWheel) {
377 } else if (WebInputEvent::isGestureEventType(input_event.type) &&
385 } else if (WebInputEvent::isTouchEventType(input_event.type))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 71 EXPECT_FALSE(modifiers & WebInputEvent::IsKeyPad || modifiers & WebInputEvent::IsLeft || modifiers & WebInputEvent::IsRight);
74 EXPECT_TRUE(modifiers & WebInputEvent::IsLeft);
75 EXPECT_FALSE(modifiers & WebInputEvent::IsKeyPad || modifiers & WebInputEvent::IsRight);
78 EXPECT_TRUE(modifiers & WebInputEvent::IsRight);
79 EXPECT_FALSE(modifiers & WebInputEvent::IsKeyPad || modifiers & WebInputEvent::IsLeft);
82 EXPECT_TRUE(modifiers & WebInputEvent::IsKeyPad)
    [all...]
ChromeClientImplTest.cpp 34 #include "WebInputEvent.h"
45 void setCurrentInputEventForTest(const WebInputEvent* event)
104 event.type = WebInputEvent::MouseUp;
147 int modifiers = WebInputEvent::ShiftKey;
156 int modifiers = WebInputEvent::ShiftKey;
166 int modifiers = WebInputEvent::MetaKey;
168 int modifiers = WebInputEvent::ControlKey;
179 int modifiers = WebInputEvent::MetaKey;
181 int modifiers = WebInputEvent::ControlKey;
192 int modifiers = WebInputEvent::MetaKey
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestPlugin.cpp 34 #include "public/web/WebInputEvent.h"
113 void printEventDetails(WebTestDelegate* delegate, const WebInputEvent& event)
115 if (WebInputEvent::isTouchEventType(event.type)) {
120 } else if (WebInputEvent::isMouseEventType(event.type) || event.type == WebInputEvent::MouseWheel) {
125 } else if (WebInputEvent::isGestureEventType(event.type)) {
493 bool TestPlugin::handleInputEvent(const WebInputEvent& event, WebCursorInfo& info)
497 case WebInputEvent::Undefined: eventName = "unknown"; break;
499 case WebInputEvent::MouseDown: eventName = "MouseDown"; break;
500 case WebInputEvent::MouseUp: eventName = "MouseUp"; break
    [all...]
EventSender.cpp 138 void initMouseEvent(WebInputEvent::Type t, WebMouseEvent::Button b, const WebPoint& pos, WebMouseEvent* e, double ts)
152 bool applyKeyModifier(const string& modifierName, WebInputEvent* event)
161 event->modifiers |= WebInputEvent::ControlKey;
163 event->modifiers |= WebInputEvent::ShiftKey;
165 event->modifiers |= WebInputEvent::AltKey;
176 event->modifiers |= WebInputEvent::MetaKey;
183 event->modifiers |= WebInputEvent::MetaKey;
189 bool applyKeyModifiers(const CppVariant* argument, WebInputEvent* event)
367 initMouseEvent(WebInputEvent::MouseDown, pressedButton, lastMousePos, &event, getCurrentEventTimeSec(m_delegate));
441 initMouseEvent(WebInputEvent::MouseDown, buttonType, lastMousePos, &event, getCurrentEventTimeSec(m_delegate))
    [all...]
  /external/chromium_org/content/browser/renderer_host/
ime_adapter_android.cc 20 #include "third_party/WebKit/public/web/WebInputEvent.h"
30 // |action| will help determine the WebInputEvent type.
43 WebKit::WebInputEvent::Type type = WebKit::WebInputEvent::Undefined;
45 type = WebKit::WebInputEvent::RawKeyDown;
47 type = WebKit::WebInputEvent::KeyUp;
59 WebKit::WebInputEvent::RawKeyDown,
60 WebKit::WebInputEvent::KeyUp,
61 WebKit::WebInputEvent::Char,
62 WebKit::WebInputEvent::ShiftKey
    [all...]
web_input_event_aurax11.cc 141 webkit_event.type = WebKit::WebInputEvent::MouseWheel;
169 webkit_event.type = WebKit::WebInputEvent::GestureFlingStart;
174 webkit_event.type = WebKit::WebInputEvent::GestureFlingCancel;
201 webkit_event.type = event->is_char() ? WebKit::WebInputEvent::Char :
202 WebKit::WebInputEvent::RawKeyDown;
205 webkit_event.type = WebKit::WebInputEvent::KeyUp;
211 if (webkit_event.modifiers & WebKit::WebInputEvent::AltKey)
222 if (webkit_event.modifiers & WebKit::WebInputEvent::ControlKey) {
226 webkit_event.modifiers & WebKit::WebInputEvent::ShiftKey);
render_widget_host_unittest.cc 48 using WebKit::WebInputEvent;
480 acked_event_.type = WebKit::WebInputEvent::Undefined;
541 prehandle_keyboard_event_type_(WebInputEvent::Undefined),
543 unhandled_keyboard_event_type_(WebInputEvent::Undefined) {
553 WebInputEvent::Type unhandled_keyboard_event_type() const {
561 WebInputEvent::Type prehandle_keyboard_event_type() const {
586 WebInputEvent::Type prehandle_keyboard_event_type_;
589 WebInputEvent::Type unhandled_keyboard_event_type_;
668 void SendInputEventACK(WebInputEvent::Type type,
676 void SimulateKeyboardEvent(WebInputEvent::Type type)
    [all...]
  /external/chromium_org/content/renderer/
render_widget_fullscreen_pepper.cc 34 using WebKit::WebInputEvent;
73 case WebInputEvent::GestureScrollBegin:
74 mouse.type = WebInputEvent::MouseDown;
77 case WebInputEvent::GestureScrollUpdate:
78 mouse.type = WebInputEvent::MouseMove;
81 case WebInputEvent::GestureFlingStart:
87 mouse.type = WebInputEvent::MouseUp;
92 case WebInputEvent::GestureScrollEnd:
93 mouse.type = WebInputEvent::MouseUp;
100 if (mouse.type == WebInputEvent::Undefined
    [all...]
idle_user_detector.cc 28 void IdleUserDetector::OnHandleInputEvent(const WebKit::WebInputEvent* event,
  /external/chromium_org/third_party/WebKit/Source/web/mac/
WebInputEventFactory.mm 34 #include "WebInputEvent.h"
179 static WebInputEvent::Type gestureEventTypeForEvent(NSEvent *event)
183 return WebInputEvent::GestureScrollBegin;
185 return WebInputEvent::GestureScrollEnd;
188 return WebInputEvent::GestureScrollEnd;
539 modifiers |= WebInputEvent::ControlKey;
541 modifiers |= WebInputEvent::ShiftKey;
543 modifiers |= WebInputEvent::AltKey;
545 modifiers |= WebInputEvent::MetaKey;
547 modifiers |= WebInputEvent::CapsLockOn
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/gtk/
WebInputEventFactory.cpp 37 #include "WebInputEvent.h"
102 modifiers |= WebInputEvent::ShiftKey;
104 modifiers |= WebInputEvent::ControlKey;
106 modifiers |= WebInputEvent::AltKey;
108 modifiers |= WebInputEvent::MetaKey;
110 modifiers |= WebInputEvent::LeftButtonDown;
112 modifiers |= WebInputEvent::MiddleButtonDown;
114 modifiers |= WebInputEvent::RightButtonDown;
116 modifiers |= WebInputEvent::CapsLockOn;
118 modifiers |= WebInputEvent::NumLockOn
    [all...]
  /external/chromium/chrome/browser/ui/views/
unhandled_keyboard_event_handler.cc 27 if (event.type == WebKit::WebInputEvent::Char && ignore_next_char_event_) {
35 if (event.type == WebKit::WebInputEvent::RawKeyDown) {
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_android.cc 13 using WebKit::WebInputEvent;
75 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
webplugin_delegate_impl_aura.cc 10 using WebKit::WebInputEvent;
62 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
  /external/chromium_org/content/public/browser/
native_web_keyboard_event.h 12 #include "third_party/WebKit/public/web/WebInputEvent.h"
40 NativeWebKeyboardEvent(WebKit::WebInputEvent::Type type,
48 WebKit::WebInputEvent::Type type,
  /external/chromium_org/content/renderer/gpu/
input_handler_manager.h 25 class WebInputEvent;
55 const WebKit::WebInputEvent* input_event,
input_event_filter_unittest.cc 17 using WebKit::WebInputEvent;
39 const WebInputEvent* record_at(size_t i) const {
41 return reinterpret_cast<const WebInputEvent*>(&record.event_data[0]);
49 const WebInputEvent* event,
65 Record(const WebInputEvent* event) {
99 void InitMouseEvent(WebMouseEvent* event, WebInputEvent::Type type,
167 InitMouseEvent(&kEvents[0], WebInputEvent::MouseDown, 10, 10);
168 InitMouseEvent(&kEvents[1], WebInputEvent::MouseMove, 20, 20);
169 InitMouseEvent(&kEvents[2], WebInputEvent::MouseUp, 30, 30);
188 WebInputEvent::Type event_type = WebInputEvent::Undefined
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PageWidgetDelegate.h 48 class WebInputEvent;
79 static bool handleInputEvent(WebCore::Page*, PageWidgetEventHandler&, const WebInputEvent&);
  /external/chromium_org/ui/views/controls/webview/
unhandled_keyboard_event_handler_win.cc 30 if (event.type == WebKit::WebInputEvent::Char && ignore_next_char_event_) {
38 if (event.type == WebKit::WebInputEvent::RawKeyDown) {
  /external/chromium_org/content/common/
content_param_traits_macros.h 13 #include "third_party/WebKit/public/web/WebInputEvent.h"
21 IPC_ENUM_TRAITS(WebKit::WebInputEvent::Type)
  /external/chromium/webkit/glue/
context_menu_unittest.cc 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
20 using WebKit::WebInputEvent;
53 mouse_event.type = WebInputEvent::MouseDown;
64 mouse_event.type = WebInputEvent::MouseUp;
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 57 // WebInputEvent --------------------------------------------------------------
59 class WebInputEvent {
61 WebInputEvent(unsigned sizeParam = sizeof(WebInputEvent))
157 // into WebCore, so round-tripping from WebInputEvent to a WebCore
182 // Returns true if the WebInputEvent |type| is a mouse event.
193 // Returns true if the WebInputEvent |type| is a keyboard event.
202 // Returns true if the WebInputEvent |type| is a touch event.
211 // Returns true if the WebInputEvent |type| should be handled as user gesture.
221 // Returns true if the WebInputEvent is a gesture event
    [all...]

Completed in 240 milliseconds

12 3 4 5 6 7 8