/external/chromium/chrome/browser/ui/views/ |
D | unhandled_keyboard_event_handler.cc | 18 const NativeWebKeyboardEvent& event, in HandleKeyboardEvent() 38 (event.modifiers & NativeWebKeyboardEvent::ShiftKey) == in HandleKeyboardEvent() 39 NativeWebKeyboardEvent::ShiftKey, in HandleKeyboardEvent() 40 (event.modifiers & NativeWebKeyboardEvent::ControlKey) == in HandleKeyboardEvent() 41 NativeWebKeyboardEvent::ControlKey, in HandleKeyboardEvent() 42 (event.modifiers & NativeWebKeyboardEvent::AltKey) == in HandleKeyboardEvent() 43 NativeWebKeyboardEvent::AltKey); in HandleKeyboardEvent()
|
D | dropdown_bar_host_gtk.cc | 31 NativeWebKeyboardEvent DropdownBarHost::GetKeyboardEvent( in GetKeyboardEvent() 38 NativeWebKeyboardEvent wke; in GetKeyboardEvent() 60 return NativeWebKeyboardEvent(&key_event.native_event()->key); in GetKeyboardEvent()
|
D | dropdown_bar_host_win.cc | 16 NativeWebKeyboardEvent DropdownBarHost::GetKeyboardEvent( in GetKeyboardEvent() 22 return NativeWebKeyboardEvent(hwnd, key_event.native_event().message, key, 0); in GetKeyboardEvent()
|
D | unhandled_keyboard_event_handler.h | 23 void HandleKeyboardEvent(const NativeWebKeyboardEvent& event,
|
/external/webkit/Source/WebKit2/Shared/ |
D | 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/webkit/Source/WebKit2/Shared/gtk/ |
D | NativeWebKeyboardEventGtk.cpp | 36 NativeWebKeyboardEvent::NativeWebKeyboardEvent(GdkEvent* event) in NativeWebKeyboardEvent() function in WebKit::NativeWebKeyboardEvent 42 NativeWebKeyboardEvent::NativeWebKeyboardEvent(const NativeWebKeyboardEvent& event) in NativeWebKeyboardEvent() function in WebKit::NativeWebKeyboardEvent
|
/external/webkit/Source/WebKit2/UIProcess/ |
D | PageClient.h | 43 class NativeWebKeyboardEvent; variable 44 class NativeWebKeyboardEvent; variable 103 …virtual bool interpretKeyEvent(const NativeWebKeyboardEvent&, Vector<WebCore::KeypressCommand>&) =… 112 …virtual void getEditorCommandsForKeyEvent(const NativeWebKeyboardEvent&, Vector<WTF::String>&) = 0; 118 virtual void doneWithKeyEvent(const NativeWebKeyboardEvent&, bool wasEventHandled) = 0;
|
D | WebUIClient.h | 46 class NativeWebKeyboardEvent; variable 72 void didNotHandleKeyEvent(WebPageProxy*, const NativeWebKeyboardEvent&);
|
/external/chromium/chrome/browser/renderer_host/ |
D | gtk_key_bindings_handler_unittest.cc | 48 NativeWebKeyboardEvent NewNativeWebKeyboardEvent(guint keyval, guint state) { in NewNativeWebKeyboardEvent() 68 return NativeWebKeyboardEvent(&event); in NewNativeWebKeyboardEvent() 71 return NativeWebKeyboardEvent(); in NewNativeWebKeyboardEvent() 74 void TestKeyBinding(const NativeWebKeyboardEvent& event, in TestKeyBinding()
|
D | gtk_im_context_wrapper.h | 28 struct NativeWebKeyboardEvent; 74 void ProcessFilteredKeyPressEvent(NativeWebKeyboardEvent* wke); 75 void ProcessUnfilteredKeyPressEvent(NativeWebKeyboardEvent* wke);
|
D | gtk_im_context_wrapper.cc | 168 NativeWebKeyboardEvent wke(event); in ProcessKeyEvent() 376 NativeWebKeyboardEvent* wke) { in ProcessFilteredKeyPressEvent() 392 NativeWebKeyboardEvent* wke) { in ProcessUnfilteredKeyPressEvent() 434 NativeWebKeyboardEvent char_event(commit_text_[0], in ProcessInputMethodResult() 594 NativeWebKeyboardEvent fake_event; in SendFakeCompositionKeyEvent()
|
D | gtk_key_bindings_handler.h | 16 struct NativeWebKeyboardEvent; 45 bool Match(const NativeWebKeyboardEvent& wke, EditCommands* edit_commands);
|
/external/webkit/Source/WebKit2/Shared/qt/ |
D | NativeWebKeyboardEventQt.cpp | 33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(QKeyEvent* event) in NativeWebKeyboardEvent() function in WebKit::NativeWebKeyboardEvent
|
/external/webkit/Source/WebKit2/Shared/win/ |
D | NativeWebKeyboardEventWin.cpp | 33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lPara… in NativeWebKeyboardEvent() function in WebKit::NativeWebKeyboardEvent
|
/external/webkit/Source/WebKit2/Shared/mac/ |
D | NativeWebKeyboardEventMac.mm | 27 #import "NativeWebKeyboardEvent.h" 33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(NSEvent *event, NSView *view)
|
/external/webkit/Source/WebKit2/UIProcess/gtk/ |
D | 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>&);
|
D | WebView.cpp | 287 m_page->handleKeyboardEvent(NativeWebKeyboardEvent(reinterpret_cast<GdkEvent*>(event))); in handleKeyboardEvent() 300 void WebView::getEditorCommandsForKeyEvent(const NativeWebKeyboardEvent& event, Vector<WTF::String>… in getEditorCommandsForKeyEvent() 485 void WebView::doneWithKeyEvent(const NativeWebKeyboardEvent&, bool wasEventHandled) in doneWithKeyEvent() argument 490 void WebView::didNotHandleKeyEvent(const NativeWebKeyboardEvent& event) in didNotHandleKeyEvent()
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | 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/chromium/chrome/browser/ui/ |
D | 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/debugger/ |
D | devtools_window.h | 93 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 95 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
|
/external/chromium/chrome/browser/extensions/ |
D | extension_host_mac.mm | 52 const NativeWebKeyboardEvent& event) { 53 if (event.skip_in_browser || event.type == NativeWebKeyboardEvent::Char ||
|
D | extension_host.h | 173 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 175 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event); 238 virtual void UnhandledKeyboardEvent(const NativeWebKeyboardEvent& event) {} in UnhandledKeyboardEvent()
|
/external/chromium/chrome/browser/notifications/ |
D | balloon_host.h | 106 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 108 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) {} in HandleKeyboardEvent()
|
/external/webkit/Source/WebKit2/UIProcess/API/mac/ |
D | PageClientImpl.h | 74 … virtual bool interpretKeyEvent(const NativeWebKeyboardEvent&, Vector<WebCore::KeypressCommand>&); 83 virtual void doneWithKeyEvent(const NativeWebKeyboardEvent&, bool wasEventHandled);
|
/external/chromium/chrome/browser/ui/panels/ |
D | panel.h | 108 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 110 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
|