HomeSort by relevance Sort by last modified time
    Searched refs:NativeWebKeyboardEvent (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /external/webkit/Source/WebKit2/Shared/gtk/
NativeWebKeyboardEventGtk.cpp 29 #include "NativeWebKeyboardEvent.h"
36 NativeWebKeyboardEvent::NativeWebKeyboardEvent(GdkEvent* event)
42 NativeWebKeyboardEvent::NativeWebKeyboardEvent(const NativeWebKeyboardEvent& event)
  /external/webkit/Source/WebKit2/Shared/qt/
NativeWebKeyboardEventQt.cpp 27 #include "NativeWebKeyboardEvent.h"
33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(QKeyEvent* event)
  /external/webkit/Source/WebKit2/Shared/mac/
NativeWebKeyboardEventMac.mm 27 #import "NativeWebKeyboardEvent.h"
33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(NSEvent *event, NSView *view)
  /external/chromium/chrome/browser/ui/views/
unhandled_keyboard_event_handler.cc 18 const NativeWebKeyboardEvent& event,
38 (event.modifiers & NativeWebKeyboardEvent::ShiftKey) ==
39 NativeWebKeyboardEvent::ShiftKey,
40 (event.modifiers & NativeWebKeyboardEvent::ControlKey) ==
41 NativeWebKeyboardEvent::ControlKey,
42 (event.modifiers & NativeWebKeyboardEvent::AltKey) ==
43 NativeWebKeyboardEvent::AltKey);
unhandled_keyboard_event_handler.h 23 void HandleKeyboardEvent(const NativeWebKeyboardEvent& event,
dropdown_bar_host_gtk.cc 31 NativeWebKeyboardEvent DropdownBarHost::GetKeyboardEvent(
38 NativeWebKeyboardEvent wke;
60 return NativeWebKeyboardEvent(&key_event.native_event()->key);
dropdown_bar_host_win.cc 16 NativeWebKeyboardEvent DropdownBarHost::GetKeyboardEvent(
22 return NativeWebKeyboardEvent(hwnd, key_event.native_event().message, key, 0);
  /external/webkit/Source/WebKit2/Shared/win/
NativeWebKeyboardEventWin.cpp 27 #include "NativeWebKeyboardEvent.h"
33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
  /external/webkit/Source/WebKit2/Shared/
NativeWebKeyboardEvent.h 45 class NativeWebKeyboardEvent : public WebKeyboardEvent {
48 NativeWebKeyboardEvent(NSEvent *, NSView *);
50 NativeWebKeyboardEvent(HWND, UINT message, WPARAM, LPARAM);
52 explicit NativeWebKeyboardEvent(QKeyEvent*);
54 NativeWebKeyboardEvent(const NativeWebKeyboardEvent&);
55 NativeWebKeyboardEvent(GdkEvent*);
  /external/chromium/chrome/browser/extensions/
extension_host_mac.h 26 virtual void UnhandledKeyboardEvent(const NativeWebKeyboardEvent& event);
  /external/webkit/Source/WebKit2/UIProcess/
PageClient.h 43 class NativeWebKeyboardEvent;
44 class NativeWebKeyboardEvent;
103 virtual bool interpretKeyEvent(const NativeWebKeyboardEvent&, Vector<WebCore::KeypressCommand>&) = 0;
112 virtual void getEditorCommandsForKeyEvent(const NativeWebKeyboardEvent&, Vector<WTF::String>&) = 0;
118 virtual void doneWithKeyEvent(const NativeWebKeyboardEvent&, bool wasEventHandled) = 0;
  /external/chromium/chrome/browser/renderer_host/
gtk_im_context_wrapper.h 28 struct NativeWebKeyboardEvent;
74 void ProcessFilteredKeyPressEvent(NativeWebKeyboardEvent* wke);
75 void ProcessUnfilteredKeyPressEvent(NativeWebKeyboardEvent* wke);
gtk_key_bindings_handler.h 16 struct NativeWebKeyboardEvent;
45 bool Match(const NativeWebKeyboardEvent& wke, EditCommands* edit_commands);
gtk_key_bindings_handler_unittest.cc 48 NativeWebKeyboardEvent NewNativeWebKeyboardEvent(guint keyval, guint state) {
68 return NativeWebKeyboardEvent(&event);
71 return NativeWebKeyboardEvent();
74 void TestKeyBinding(const NativeWebKeyboardEvent& event,
  /external/chromium/chrome/browser/ui/
browser_window.h 30 struct NativeWebKeyboardEvent;
286 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
291 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) = 0;
  /external/chromium/chrome/browser/ui/cocoa/
browser_window_cocoa.h 96 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
98 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
128 int GetCommandId(const NativeWebKeyboardEvent& event);
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebView.h 102 virtual void doneWithKeyEvent(const NativeWebKeyboardEvent&, bool wasEventHandled);
103 virtual void didNotHandleKeyEvent(const NativeWebKeyboardEvent&);
110 virtual void getEditorCommandsForKeyEvent(const NativeWebKeyboardEvent&, Vector<WTF::String>&);
  /external/chromium/chrome/browser/chromeos/login/
account_screen.h 56 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
html_page_screen.h 73 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
  /external/chromium/chrome/browser/ui/gtk/
html_dialog_gtk.h 51 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
  /external/chromium/chrome/browser/debugger/
devtools_window.h 93 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
95 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
  /external/chromium/chrome/browser/notifications/
balloon_host.h 106 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
108 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) {}
  /external/chromium/chrome/browser/tab_contents/
background_contents.h 115 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
117 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) {}
  /external/chromium/chrome/browser/ui/panels/
panel.h 108 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
110 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PageClientImpl.h 74 virtual bool interpretKeyEvent(const NativeWebKeyboardEvent&, Vector<WebCore::KeypressCommand>&);
83 virtual void doneWithKeyEvent(const NativeWebKeyboardEvent&, bool wasEventHandled);

Completed in 397 milliseconds

1 2 3 4