HomeSort by relevance Sort by last modified time
    Searched full:keyboardevent (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /external/webkit/WebKit/chromium/tests/
KeyboardTest.cpp 38 #include "KeyboardEvent.h"
60 RefPtr<KeyboardEvent> keyboardEvent = KeyboardEvent::create(evt, 0);
61 return editorImpl.interpretKeyEvent(keyboardEvent.get());
65 void setupKeyDownEvent(WebKeyboardEvent* keyboardEvent,
69 keyboardEvent->windowsKeyCode = keyCode;
70 keyboardEvent->modifiers = modifiers;
71 keyboardEvent->type = WebInputEvent::KeyDown;
72 keyboardEvent->text[0] = keyCode
    [all...]
  /external/webkit/WebCore/dom/
KeyboardEvent.h 45 class KeyboardEvent : public UIEventWithKeyState {
54 static PassRefPtr<KeyboardEvent> create()
56 return adoptRef(new KeyboardEvent);
58 static PassRefPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* view)
60 return adoptRef(new KeyboardEvent(platformEvent, view));
62 static PassRefPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view,
66 return adoptRef(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, keyLocation,
69 virtual ~KeyboardEvent();
96 KeyboardEvent();
97 KeyboardEvent(const PlatformKeyboardEvent&, AbstractView*)
    [all...]
KeyboardEvent.cpp 24 #include "KeyboardEvent.h"
53 KeyboardEvent::KeyboardEvent()
60 KeyboardEvent::KeyboardEvent(const PlatformKeyboardEvent& key, AbstractView* view)
70 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view,
81 KeyboardEvent::~KeyboardEvent()
85 void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view
    [all...]
  /external/webkit/WebCore/inspector/front-end/
KeyboardShortcut.js 99 WebInspector.KeyboardShortcut.makeKeyFromEvent = function(keyboardEvent)
102 if (keyboardEvent.shiftKey)
104 if (keyboardEvent.ctrlKey)
106 if (keyboardEvent.altKey)
108 if (keyboardEvent.metaKey)
110 return WebInspector.KeyboardShortcut._makeKeyFromCodeAndModifiers(keyboardEvent.keyCode, modifiers);
  /external/webkit/WebCore/page/
FocusController.h 37 class KeyboardEvent;
49 bool setInitialFocus(FocusDirection, KeyboardEvent*);
50 bool advanceFocus(FocusDirection, KeyboardEvent*, bool initialFocus = false);
EventHandler.h 56 class KeyboardEvent;
138 bool tabsToLinks(KeyboardEvent*) const;
139 bool tabsToAllControls(KeyboardEvent*) const;
161 void defaultKeyboardEventHandler(KeyboardEvent*);
181 PassRefPtr<KeyboardEvent> currentKeyboardEvent() const;
247 void handleKeyboardSelectionMovement(KeyboardEvent*);
307 void defaultSpaceEventHandler(KeyboardEvent*);
308 void defaultTabEventHandler(KeyboardEvent*);
321 bool invertSenseOfTabsToLinks(KeyboardEvent*) const;
EditorClient.h 50 class KeyboardEvent;
130 virtual void handleKeyboardEvent(KeyboardEvent*) = 0;
131 virtual void handleInputMethodKeydown(KeyboardEvent*) = 0;
136 virtual bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*) = 0;
  /external/webkit/WebKit/wx/WebKitSupport/
EditorClientWx.h 90 virtual const char* interpretKeyEvent(const KeyboardEvent*);
91 virtual bool handleEditingKeyboardEvent(KeyboardEvent*);
92 virtual void handleKeyboardEvent(KeyboardEvent*);
93 virtual void handleInputMethodKeydown(KeyboardEvent*);
98 virtual bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*);
  /external/webkit/WebCore/page/haiku/
EventHandlerHaiku.cpp 37 #include "KeyboardEvent.h"
53 static bool isKeyboardOptionTab(KeyboardEvent* event)
62 bool EventHandler::invertSenseOfTabsToLinks(KeyboardEvent* event) const
67 bool EventHandler::tabsToAllControls(KeyboardEvent* event) const
  /external/webkit/WebCore/page/qt/
EventHandlerQt.cpp 44 #include "KeyboardEvent.h"
61 static bool isKeyboardOptionTab(KeyboardEvent* event)
69 bool EventHandler::invertSenseOfTabsToLinks(KeyboardEvent* event) const
74 bool EventHandler::tabsToAllControls(KeyboardEvent* event) const
  /external/webkit/WebKit/chromium/public/gtk/
WebInputEventFactory.h 50 WEBKIT_API static WebKeyboardEvent keyboardEvent(const GdkEventKey*);
51 WEBKIT_API static WebKeyboardEvent keyboardEvent(wchar_t character, int state, double timeStampSeconds);
  /external/webkit/WebKit/chromium/public/mac/
WebInputEventFactory.h 52 WEBKIT_API static WebKeyboardEvent keyboardEvent(NSEvent*);
53 WEBKIT_API static WebKeyboardEvent keyboardEvent(wchar_t character, int modifiers, double timeStampSeconds);
  /external/webkit/WebCore/loader/
MediaDocument.cpp 41 #include "KeyboardEvent.h"
185 KeyboardEvent* keyboardEvent = static_cast<KeyboardEvent*>(event);
186 if (keyboardEvent->keyIdentifier() == "U+0020") { // space
  /external/webkit/WebCore/html/
HTMLSelectElement.h 36 class KeyboardEvent;
89 virtual bool isKeyboardFocusable(KeyboardEvent*) const;
130 void typeAheadFind(KeyboardEvent*);
HTMLButtonElement.cpp 34 #include "KeyboardEvent.h"
114 if (evt->type() == eventNames().keydownEvent && static_cast<KeyboardEvent*>(evt)->keyIdentifier() == "U+0020") {
120 switch (static_cast<KeyboardEvent*>(evt)->charCode()) {
133 if (evt->type() == eventNames().keyupEvent && static_cast<KeyboardEvent*>(evt)->keyIdentifier() == "U+0020") {
HTMLFrameOwnerElement.h 63 virtual bool isKeyboardFocusable(KeyboardEvent*) const { return m_contentFrame; }
  /external/webkit/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 87 virtual void handleKeyboardEvent(KeyboardEvent*);
88 virtual void handleInputMethodKeydown(KeyboardEvent*);
93 virtual bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*);
  /external/webkit/WebKit/chromium/src/
WebInputEventConversion.h 43 class KeyboardEvent;
85 // Converts a WebCore::KeyboardEvent to a corresponding WebKeyboardEvent.
91 WebKeyboardEventBuilder(const WebCore::KeyboardEvent&);
EditorClientImpl.h 85 virtual const char* interpretKeyEvent(const WebCore::KeyboardEvent*);
86 virtual bool handleEditingKeyboardEvent(WebCore::KeyboardEvent*);
87 virtual void handleKeyboardEvent(WebCore::KeyboardEvent*);
88 virtual void handleInputMethodKeydown(WebCore::KeyboardEvent*);
92 virtual bool doTextFieldCommandFromEvent(WebCore::Element*, WebCore::KeyboardEvent*);
127 void modifySelection(WebCore::Frame*, WebCore::KeyboardEvent*);
  /external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 89 virtual void handleKeyboardEvent(KeyboardEvent*);
90 virtual void handleInputMethodKeydown(KeyboardEvent*);
95 virtual bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*);
  /external/webkit/WebKit/qt/WebCoreSupport/
EditorClientQt.h 88 virtual void handleKeyboardEvent(KeyboardEvent*);
89 virtual void handleInputMethodKeydown(KeyboardEvent*);
94 virtual bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*);
  /external/webkit/WebKit/win/WebCoreSupport/
WebEditorClient.h 94 virtual bool doTextFieldCommandFromEvent(WebCore::Element*, WebCore::KeyboardEvent*);
98 void handleKeyboardEvent(WebCore::KeyboardEvent*);
99 void handleInputMethodKeydown(WebCore::KeyboardEvent*);
  /external/webkit/WebCore/wml/
WMLAnchorElement.cpp 27 #include "KeyboardEvent.h"
54 shouldHandle = static_cast<KeyboardEvent*>(event)->keyIdentifier() == "Enter";
  /external/webkit/WebKit/mac/WebView/
WebHTMLViewInternal.h 40 class KeyboardEvent;
52 - (BOOL)_interceptEditingKeyEvent:(WebCore::KeyboardEvent *)event shouldSaveCommand:(BOOL)shouldSave;
  /external/webkit/WebKit/win/
DOMEventsClasses.cpp 34 #include <WebCore/KeyboardEvent.h>
291 WebCore::KeyboardEvent* keyEvent = static_cast<WebCore::KeyboardEvent*>(m_event.get());
303 WebCore::KeyboardEvent* keyEvent = static_cast<WebCore::KeyboardEvent*>(m_event.get());
315 WebCore::KeyboardEvent* keyEvent = static_cast<WebCore::KeyboardEvent*>(m_event.get());
327 WebCore::KeyboardEvent* keyEvent = static_cast<WebCore::KeyboardEvent*>(m_event.get());
339 WebCore::KeyboardEvent* keyEvent = static_cast<WebCore::KeyboardEvent*>(m_event.get())
    [all...]

Completed in 831 milliseconds

1 2 3 4 5