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

1 2 3

  /external/webkit/Source/WebKit/chromium/public/mac/
WebInputEventFactory.h 46 class WebKeyboardEvent;
52 WEBKIT_API static WebKeyboardEvent keyboardEvent(NSEvent*);
53 WEBKIT_API static WebKeyboardEvent keyboardEvent(wchar_t character, int modifiers, double timeStampSeconds);
  /external/webkit/Source/WebKit2/Shared/qt/
NativeWebKeyboardEventQt.cpp 34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(event))
WebEventFactoryQt.h 46 static WebKeyboardEvent createWebKeyboardEvent(QKeyEvent* event);
  /external/webkit/Source/WebKit/chromium/public/win/
WebInputEventFactory.h 40 class WebKeyboardEvent;
46 WEBKIT_API static WebKeyboardEvent keyboardEvent(HWND, UINT, WPARAM, LPARAM);
  /external/webkit/Source/WebKit2/Shared/gtk/
NativeWebKeyboardEventGtk.cpp 37 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(&event->key))
43 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(&event.nativeEvent()->key))
WebEventFactory.h 42 static WebKeyboardEvent createWebKeyboardEvent(const GdkEventKey*);
WebEventFactory.cpp 174 WebKeyboardEvent WebEventFactory::createWebKeyboardEvent(const GdkEventKey* event)
176 return WebKeyboardEvent((event->type == GDK_KEY_RELEASE) ? WebEvent::KeyUp : WebEvent::KeyDown,
  /external/webkit/Source/WebKit2/Shared/mac/
NativeWebKeyboardEventMac.mm 34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(event, view))
WebEventFactory.h 40 static WebKeyboardEvent createWebKeyboardEvent(NSEvent *event, NSView *windowView);
  /external/webkit/Source/WebKit/chromium/public/gtk/
WebInputEventFactory.h 44 class WebKeyboardEvent;
50 WEBKIT_API static WebKeyboardEvent keyboardEvent(const GdkEventKey*);
51 WEBKIT_API static WebKeyboardEvent keyboardEvent(wchar_t character, int state, double timeStampSeconds);
  /external/webkit/Source/WebKit/chromium/public/
WebAutoFillClient.h 37 class WebKeyboardEvent;
77 virtual void textFieldDidReceiveKeyDown(const WebInputElement&, const WebKeyboardEvent&) { }
WebInputEvent.h 97 // WebKeyboardEvent
180 // WebKeyboardEvent -----------------------------------------------------------
182 class WebKeyboardEvent : public WebInputEvent {
227 WebKeyboardEvent(unsigned sizeParam = sizeof(WebKeyboardEvent))
  /external/webkit/Source/WebKit2/Shared/
WebKeyboardEvent.cpp 33 WebKeyboardEvent::WebKeyboardEvent(Type type, const String& text, const String& unmodifiedText, const String& keyIdentifier, int windowsVirtualKeyCode, int nativeVirtualKeyCode, int macCharCode, bool isAutoRepeat, bool isKeypad, bool isSystemKey, Modifiers modifiers, double timestamp)
48 void WebKeyboardEvent::encode(CoreIPC::ArgumentEncoder* encoder) const
56 bool WebKeyboardEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebKeyboardEvent& t)
67 bool WebKeyboardEvent::isKeyboardEventType(Type type)
WebEventConversion.h 46 class WebKeyboardEvent;
59 WebCore::PlatformKeyboardEvent platform(const WebKeyboardEvent&);
NativeWebKeyboardEvent.h 45 class NativeWebKeyboardEvent : public WebKeyboardEvent {
WebEvent.h 56 // WebKeyboardEvent
213 class WebKeyboardEvent : public WebEvent {
215 WebKeyboardEvent() { }
217 WebKeyboardEvent(Type, const String& text, const String& unmodifiedText, const String& keyIdentifier, int windowsVirtualKeyCode, int nativeVirtualKeyCode, int macCharCode, bool isAutoRepeat, bool isKeypad, bool isSystemKey, Modifiers, double timestamp);
230 static bool decode(CoreIPC::ArgumentDecoder*, WebKeyboardEvent&);
  /external/webkit/Source/WebKit/chromium/src/
WebInputEventConversion.h 53 class WebKeyboardEvent;
70 PlatformKeyboardEventBuilder(const WebKeyboardEvent&);
104 // Converts a WebCore::KeyboardEvent to a corresponding WebKeyboardEvent.
107 class WebKeyboardEventBuilder : public WebKeyboardEvent {
WebInputEvent.cpp 149 void WebKeyboardEvent::setKeyIdentifierFromWindowsKeyCode()
WebPopupMenuImpl.h 51 class WebKeyboardEvent;
97 bool KeyEvent(const WebKeyboardEvent&);
WebViewImpl.h 83 class WebKeyboardEvent;
255 bool keyEvent(const WebKeyboardEvent&);
256 bool charEvent(const WebKeyboardEvent&);
265 bool sendContextMenuEvent(const WebKeyboardEvent&);
376 bool keyEventDefault(const WebKeyboardEvent&);
379 bool selectPopupHandleKeyEvent(const WebKeyboardEvent&);
382 bool autocompleteHandleKeyEvent(const WebKeyboardEvent&);
  /external/webkit/Source/WebKit2/Shared/win/
NativeWebKeyboardEventWin.cpp 34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(hwnd, message, wParam, lParam))
WebEventFactory.h 40 static WebKeyboardEvent createWebKeyboardEvent(HWND, UINT message, WPARAM, LPARAM);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePluginNone.cpp 82 bool NetscapePlugin::platformHandleKeyboardEvent(const WebKeyboardEvent& event)
  /external/webkit/Source/WebKit/chromium/tests/
KeyboardTest.cpp 50 // Pass a WebKeyboardEvent into the EditorClient and get back the string
54 const WebKeyboardEvent& webKeyboardEvent,
58 PlatformKeyboardEventBuilder evt(webKeyboardEvent);
64 // Set up a WebKeyboardEvent KEY_DOWN event with key code and modifiers.
65 void setupKeyDownEvent(WebKeyboardEvent* keyboardEvent,
81 WebKeyboardEvent keyboardEvent;
94 WebKeyboardEvent keyboardEvent;
102 WebKeyboardEvent keyboardEvent;
110 WebKeyboardEvent keyboardEvent
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
Plugin.h 49 class WebKeyboardEvent;
143 virtual bool handleKeyboardEvent(const WebKeyboardEvent&) = 0;

Completed in 221 milliseconds

1 2 3