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

12 3 4 5 6 7 8 9

  /external/chromium_org/content/browser/renderer_host/input/
web_input_event_util_posix.h 8 #include "third_party/WebKit/public/web/WebInputEvent.h"
14 blink::WebInputEvent::Modifiers GetLocationModifiersFromWindowsKeyCode(
gesture_event_queue.cc 15 using blink::WebInputEvent;
50 if (it->event.type == WebInputEvent::GestureFlingStart)
52 if (it->event.type == WebInputEvent::GestureFlingCancel)
64 case WebInputEvent::GestureScrollUpdate:
78 case WebInputEvent::GesturePinchBegin:
79 case WebInputEvent::GesturePinchEnd:
80 case WebInputEvent::GesturePinchUpdate:
104 return gesture_event.event.type != WebInputEvent::GestureFlingCancel ||
111 case WebInputEvent::GestureFlingCancel:
118 case WebInputEvent::GestureTapDown
    [all...]
touch_emulator.cc 19 using blink::WebInputEvent;
134 mouse_event.type == WebInputEvent::MouseDown) {
141 if (mouse_event.type == WebInputEvent::MouseMove) {
153 if (mouse_event.type == WebInputEvent::MouseDown)
155 else if (mouse_event.type == WebInputEvent::MouseUp)
158 UpdateShiftPressed((mouse_event.modifiers & WebInputEvent::ShiftKey) != 0);
181 if (!UpdateShiftPressed((event.modifiers & WebInputEvent::ShiftKey) != 0))
212 case WebInputEvent::Undefined:
213 NOTREACHED() << "Undefined WebInputEvent type";
217 case WebInputEvent::GestureScrollBegin
    [all...]
web_input_event_builders_android.cc 14 using blink::WebInputEvent;
24 WebKeyboardEvent WebKeyboardEventBuilder::Build(WebInputEvent::Type type,
30 DCHECK(WebInputEvent::isKeyboardEventType(type));
54 WebMouseEvent WebMouseEventBuilder::Build(blink::WebInputEvent::Type type,
61 DCHECK(WebInputEvent::isMouseEventType(type));
73 if (type == WebInputEvent::MouseDown || type == WebInputEvent::MouseUp)
87 result.type = WebInputEvent::MouseWheel;
120 WebGestureEvent WebGestureEventBuilder::Build(WebInputEvent::Type type,
124 DCHECK(WebInputEvent::isGestureEventType(type))
    [all...]
web_input_event_builders_android.h 10 #include "third_party/WebKit/public/web/WebInputEvent.h"
18 static blink::WebMouseEvent Build(blink::WebInputEvent::Type type,
44 static blink::WebKeyboardEvent Build(blink::WebInputEvent::Type type,
54 static blink::WebGestureEvent Build(blink::WebInputEvent::Type type,
input_router_client.h 12 #include "third_party/WebKit/public/web/WebInputEvent.h"
33 const blink::WebInputEvent& input_event,
36 // Called each time a WebInputEvent IPC is sent.
39 // Called each time a WebInputEvent ACK IPC is received.
synthetic_gesture_target_base.cc 11 #include "third_party/WebKit/public/web/WebInputEvent.h"
15 using blink::WebInputEvent;
45 const WebInputEvent& event) {
53 if (WebInputEvent::isTouchEventType(event.type)) {
58 if (web_touch.type == WebInputEvent::TouchStart) {
67 } else if (event.type == WebInputEvent::MouseWheel) {
73 } else if (WebInputEvent::isMouseEventType(event.type)) {
76 CHECK(event.type != WebInputEvent::MouseDown ||
  /external/chromium_org/content/browser/android/in_process/
synchronous_input_event_filter.h 16 class WebInputEvent;
32 const blink::WebInputEvent& input_event);
  /external/chromium_org/content/common/input/
web_touch_event_traits.h 10 #include "third_party/WebKit/public/web/WebInputEvent.h"
27 static void ResetType(blink::WebInputEvent::Type type,
34 static void ResetTypeAndTouchStates(blink::WebInputEvent::Type type,
synthetic_web_input_event_builders.cc 13 using blink::WebInputEvent;
22 blink::WebInputEvent::Type type) {
29 blink::WebInputEvent::Type type,
33 DCHECK(WebInputEvent::isMouseEventType(type));
41 if (type == WebInputEvent::MouseDown || type == WebInputEvent::MouseUp)
52 result.type = WebInputEvent::MouseWheel;
62 result.type = WebInputEvent::MouseWheel;
75 WebInputEvent::Type type) {
76 DCHECK(WebInputEvent::isKeyboardEventType(type))
    [all...]
input_event.cc 13 InputEvent::InputEvent(const blink::WebInputEvent& web_event,
synthetic_web_input_event_builders.h 10 #include "third_party/WebKit/public/web/WebInputEvent.h"
18 static blink::WebMouseEvent Build(blink::WebInputEvent::Type type);
19 static blink::WebMouseEvent Build(blink::WebInputEvent::Type type,
37 static blink::WebKeyboardEvent Build(blink::WebInputEvent::Type type);
42 static blink::WebGestureEvent Build(blink::WebInputEvent::Type type,
  /external/chromium_org/content/renderer/input/
input_handler_manager_client.h 23 class WebInputEvent;
38 const blink::WebInputEvent*,
  /external/chromium_org/third_party/WebKit/public/web/
WebPluginScrollbar.h 33 class WebInputEvent;
71 virtual bool handleInputEvent(const WebInputEvent&) = 0;
  /external/chromium_org/content/browser/renderer_host/
overscroll_controller.cc 13 using blink::WebInputEvent;
37 bool OverscrollController::WillHandleEvent(const blink::WebInputEvent& event) {
40 case blink::WebInputEvent::GestureScrollEnd:
41 case blink::WebInputEvent::GestureFlingStart:
45 case blink::WebInputEvent::MouseWheel: {
57 if (blink::WebInputEvent::isMouseEventType(event.type) ||
58 blink::WebInputEvent::isKeyboardEventType(event.type)) {
88 void OverscrollController::ReceivedEventACK(const blink::WebInputEvent& event,
95 (event.type == blink::WebInputEvent::MouseWheel ||
96 event.type == blink::WebInputEvent::GestureScrollUpdate))
    [all...]
ui_events_helper.cc 8 #include "third_party/WebKit/public/web/WebInputEvent.h"
17 if (modifiers & blink::WebInputEvent::ShiftKey)
19 if (modifiers & blink::WebInputEvent::ControlKey)
21 if (modifiers & blink::WebInputEvent::AltKey)
24 if (modifiers & blink::WebInputEvent::LeftButtonDown)
26 if (modifiers & blink::WebInputEvent::RightButtonDown)
28 if (modifiers & blink::WebInputEvent::MiddleButtonDown)
31 if (modifiers & blink::WebInputEvent::CapsLockOn)
73 blink::WebInputEvent::Type TouchEventTypeFromEvent(
77 return blink::WebInputEvent::TouchStart
    [all...]
render_widget_host_unittest.cc 44 using blink::WebInputEvent;
140 acked_touch_event_type_ = blink::WebInputEvent::Undefined;
172 WebInputEvent::Type acked_touch_event_type() const {
190 WebInputEvent::Type acked_touch_event_type_;
284 acked_event_.type = blink::WebInputEvent::Undefined;
335 // into WebInputEvent::MouseMove.)
338 SyntheticWebMouseEventBuilder::Build(WebInputEvent::MouseMove),
364 prehandle_keyboard_event_type_(WebInputEvent::Undefined),
366 unhandled_keyboard_event_type_(WebInputEvent::Undefined),
378 WebInputEvent::Type unhandled_keyboard_event_type() const
    [all...]
native_web_keyboard_event_aura.cc 23 (flags & ui::EF_SHIFT_DOWN ? blink::WebInputEvent::ShiftKey : 0) |
24 (flags & ui::EF_CONTROL_DOWN ? blink::WebInputEvent::ControlKey : 0) |
25 (flags & ui::EF_CAPS_LOCK_DOWN ? blink::WebInputEvent::CapsLockOn : 0) |
26 (flags & ui::EF_ALT_DOWN ? blink::WebInputEvent::AltKey : 0);
68 type = is_char ? blink::WebInputEvent::Char :
69 blink::WebInputEvent::RawKeyDown;
72 type = blink::WebInputEvent::KeyUp;
web_input_event_aurax11.cc 103 webkit_event.type = event->is_char() ? blink::WebInputEvent::Char :
104 blink::WebInputEvent::RawKeyDown;
107 webkit_event.type = blink::WebInputEvent::KeyUp;
113 if (webkit_event.modifiers & blink::WebInputEvent::AltKey)
124 if (webkit_event.modifiers & blink::WebInputEvent::ControlKey) {
128 webkit_event.modifiers & blink::WebInputEvent::ShiftKey);
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.cpp 107 if (e.modifiers & WebInputEvent::ShiftKey)
109 if (e.modifiers & WebInputEvent::ControlKey)
111 if (e.modifiers & WebInputEvent::AltKey)
113 if (e.modifiers & WebInputEvent::MetaKey)
121 case WebInputEvent::MouseMove:
122 case WebInputEvent::MouseLeave: // synthesize a move event
126 case WebInputEvent::MouseDown:
130 case WebInputEvent::MouseUp:
160 if (e.modifiers & WebInputEvent::ShiftKey)
162 if (e.modifiers & WebInputEvent::ControlKey
    [all...]
WebPluginScrollbarImpl.h 83 virtual bool handleInputEvent(const WebInputEvent&) OVERRIDE;
88 bool onMouseDown(const WebInputEvent&);
89 bool onMouseUp(const WebInputEvent&);
90 bool onMouseMove(const WebInputEvent&);
91 bool onMouseLeave(const WebInputEvent&);
92 bool onMouseWheel(const WebInputEvent&);
93 bool onKeyDown(const WebInputEvent&);
WebPluginScrollbarImpl.cpp 37 #include "public/web/WebInputEvent.h"
243 bool WebPluginScrollbarImpl::handleInputEvent(const WebInputEvent& event)
246 case WebInputEvent::MouseDown:
248 case WebInputEvent::MouseUp:
250 case WebInputEvent::MouseMove:
252 case WebInputEvent::MouseLeave:
254 case WebInputEvent::MouseWheel:
256 case WebInputEvent::KeyDown:
258 case WebInputEvent::Undefined:
259 case WebInputEvent::MouseEnter
    [all...]
  /external/chromium_org/content/renderer/
render_widget_fullscreen_pepper.cc 33 using blink::WebInputEvent;
69 case WebInputEvent::GestureScrollBegin:
70 mouse.type = WebInputEvent::MouseDown;
73 case WebInputEvent::GestureScrollUpdate:
74 mouse.type = WebInputEvent::MouseMove;
77 case WebInputEvent::GestureFlingStart:
83 mouse.type = WebInputEvent::MouseUp;
88 case WebInputEvent::GestureScrollEnd:
89 mouse.type = WebInputEvent::MouseUp;
96 if (mouse.type == WebInputEvent::Undefined
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
KeyboardTest.cpp 41 #include "public/web/WebInputEvent.h"
74 keyboardEvent->type = WebInputEvent::KeyDown;
86 WebInputEvent::Modifiers osModifier = WebInputEvent::MetaKey;
88 WebInputEvent::Modifiers osModifier = WebInputEvent::ControlKey;
98 setupKeyDownEvent(&keyboardEvent, keyCode, WebInputEvent::ControlKey);
186 EXPECT_STREQ("InsertBacktab", interpretTab(WebInputEvent::ShiftKey));
196 EXPECT_STREQ("InsertNewline", interpretNewLine(WebInputEvent::ControlKey));
201 EXPECT_STREQ("InsertLineBreak", interpretNewLine(WebInputEvent::ShiftKey))
    [all...]
  /external/chromium_org/ui/views/controls/webview/
unhandled_keyboard_event_handler_linux.cc 31 if (event.type == blink::WebInputEvent::Char && ignore_next_char_event_) {
39 if (event.type == blink::WebInputEvent::RawKeyDown) {

Completed in 1798 milliseconds

12 3 4 5 6 7 8 9