Home
last modified time | relevance | path

Searched refs:KeyboardEvent (Results 1 – 25 of 161) sorted by relevance

1234567

/external/webkit/Source/WebCore/dom/
DKeyboardEvent.cpp54 KeyboardEvent::KeyboardEvent() in KeyboardEvent() function in WebCore::KeyboardEvent
61 KeyboardEvent::KeyboardEvent(const PlatformKeyboardEvent& key, AbstractView* view) in KeyboardEvent() function in WebCore::KeyboardEvent
71 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, Abstra… in KeyboardEvent() function in WebCore::KeyboardEvent
82 KeyboardEvent::~KeyboardEvent() in ~KeyboardEvent()
86 void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, Ab… in initKeyboardEvent()
104 bool KeyboardEvent::getModifierState(const String& keyIdentifier) const in getModifierState()
117 int KeyboardEvent::keyCode() const in keyCode()
129 int KeyboardEvent::charCode() const in charCode()
144 bool KeyboardEvent::isKeyboardEvent() const in isKeyboardEvent()
149 int KeyboardEvent::which() const in which()
[all …]
DKeyboardEvent.h48 class KeyboardEvent : public UIEventWithKeyState {
57 static PassRefPtr<KeyboardEvent> create() in create()
59 return adoptRef(new KeyboardEvent); in create()
61 …static PassRefPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* … in create()
63 return adoptRef(new KeyboardEvent(platformEvent, view)); in create()
65 …static PassRefPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable,… in create()
69 … return adoptRef(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, keyLocation, in create()
72 virtual ~KeyboardEvent();
99 KeyboardEvent();
100 KeyboardEvent(const PlatformKeyboardEvent&, AbstractView*);
[all …]
/external/webkit/Source/WebCore/page/
DFocusController.h39 class KeyboardEvent; variable
52 bool setInitialFocus(FocusDirection, KeyboardEvent*);
53 bool advanceFocus(FocusDirection, KeyboardEvent*, bool initialFocus = false);
64 bool advanceFocusDirectionally(FocusDirection, KeyboardEvent*);
65 bool advanceFocusInDocumentOrder(FocusDirection, KeyboardEvent*, bool initialFocus);
67 …ctionallyInContainer(Node* container, const IntRect& startingRect, FocusDirection, KeyboardEvent*);
68 …ntainer(Node* container, const IntRect& startingRect, FocusDirection, KeyboardEvent*, FocusCandida…
DEventHandler.h60 class KeyboardEvent; variable
160 bool tabsToLinks(KeyboardEvent*) const;
161 bool tabsToAllFormControls(KeyboardEvent*) const;
191 void defaultKeyboardEventHandler(KeyboardEvent*);
210 PassRefPtr<KeyboardEvent> currentKeyboardEvent() const;
238 static bool isKeyboardOptionTab(KeyboardEvent*);
287 void handleKeyboardSelectionMovement(KeyboardEvent*);
350 void defaultSpaceEventHandler(KeyboardEvent*);
351 void defaultBackspaceEventHandler(KeyboardEvent*);
352 void defaultTabEventHandler(KeyboardEvent*);
[all …]
DEditorClient.h66 class KeyboardEvent; variable
119 virtual void handleKeyboardEvent(KeyboardEvent*) = 0;
120 virtual void handleInputMethodKeydown(KeyboardEvent*) = 0;
125 virtual bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*) = 0;
/external/webkit/Source/WebKit/chromium/src/
DEditorClientImpl.h88 virtual const char* interpretKeyEvent(const WebCore::KeyboardEvent*);
89 virtual bool handleEditingKeyboardEvent(WebCore::KeyboardEvent*);
90 virtual void handleKeyboardEvent(WebCore::KeyboardEvent*);
91 virtual void handleInputMethodKeydown(WebCore::KeyboardEvent*);
95 virtual bool doTextFieldCommandFromEvent(WebCore::Element*, WebCore::KeyboardEvent*);
129 void modifySelection(WebCore::Frame*, WebCore::KeyboardEvent*);
/external/webkit/Source/WebKit/efl/WebCoreSupport/
DEditorClientEfl.h93 virtual const char* interpretKeyEvent(const KeyboardEvent* event);
94 virtual bool handleEditingKeyboardEvent(KeyboardEvent*);
95 virtual void handleKeyboardEvent(KeyboardEvent*);
96 virtual void handleInputMethodKeydown(KeyboardEvent*);
101 virtual bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*);
DEditorClientEfl.cpp299 const char* EditorClientEfl::interpretKeyEvent(const KeyboardEvent* event) in interpretKeyEvent()
334 bool EditorClientEfl::handleEditingKeyboardEvent(KeyboardEvent* event) in handleEditingKeyboardEvent()
398 void EditorClientEfl::handleKeyboardEvent(KeyboardEvent* event) in handleKeyboardEvent()
404 void EditorClientEfl::handleInputMethodKeydown(KeyboardEvent* event) in handleInputMethodKeydown()
433 bool EditorClientEfl::doTextFieldCommandFromEvent(Element*, KeyboardEvent*) in doTextFieldCommandFromEvent() argument
/external/webkit/Source/WebKit/wx/WebKitSupport/
DEditorClientWx.h92 virtual const char* interpretKeyEvent(const KeyboardEvent*);
93 virtual bool handleEditingKeyboardEvent(KeyboardEvent*);
94 virtual void handleKeyboardEvent(KeyboardEvent*);
95 virtual void handleInputMethodKeydown(KeyboardEvent*);
100 virtual bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*);
/external/webkit/Source/WebCore/html/
DBaseButtonInputType.h45 virtual void handleKeydownEvent(KeyboardEvent*);
46 virtual void handleKeypressEvent(KeyboardEvent*);
47 virtual void handleKeyupEvent(KeyboardEvent*);
DBaseButtonInputType.cpp47 void BaseButtonInputType::handleKeydownEvent(KeyboardEvent* event) in handleKeydownEvent()
57 void BaseButtonInputType::handleKeypressEvent(KeyboardEvent* event) in handleKeypressEvent()
71 void BaseButtonInputType::handleKeyupEvent(KeyboardEvent* event) in handleKeyupEvent()
DInputType.h50 class KeyboardEvent; variable
169 virtual void handleKeydownEvent(KeyboardEvent*);
170 virtual void handleKeypressEvent(KeyboardEvent*);
171 virtual void handleKeyupEvent(KeyboardEvent*);
246 void dispatchSimulatedClickIfActive(KeyboardEvent*) const;
DBaseCheckableInputType.h42 virtual void handleKeydownEvent(KeyboardEvent*);
48 virtual void handleKeypressEvent(KeyboardEvent*);
DTextFieldInputType.h44 virtual void handleKeydownEvent(KeyboardEvent*);
45 void handleKeydownEventForSpinButton(KeyboardEvent*);
DRadioInputType.h48 virtual void handleKeydownEvent(KeyboardEvent*);
49 virtual void handleKeyupEvent(KeyboardEvent*);
DHTMLButtonElement.cpp112 …if (event->type() == eventNames().keydownEvent && static_cast<KeyboardEvent*>(event)->keyIdentifie… in defaultEventHandler()
118 switch (static_cast<KeyboardEvent*>(event)->charCode()) { in defaultEventHandler()
129 …if (event->type() == eventNames().keyupEvent && static_cast<KeyboardEvent*>(event)->keyIdentifier(… in defaultEventHandler()
DBaseCheckableInputType.cpp62 void BaseCheckableInputType::handleKeydownEvent(KeyboardEvent* event) in handleKeydownEvent()
72 void BaseCheckableInputType::handleKeypressEvent(KeyboardEvent* event) in handleKeypressEvent()
/external/webkit/Source/WebKit/wince/WebCoreSupport/
DEditorClientWinCE.h80 virtual const char* interpretKeyEvent(const WebCore::KeyboardEvent*);
81 virtual bool handleEditingKeyboardEvent(WebCore::KeyboardEvent*);
82 virtual void handleKeyboardEvent(WebCore::KeyboardEvent*);
83 virtual void handleInputMethodKeydown(WebCore::KeyboardEvent*);
88 virtual bool doTextFieldCommandFromEvent(WebCore::Element*, WebCore::KeyboardEvent*);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
DEditorClientGtk.h52 class KeyboardEvent; variable
74 void generateEditorCommands(const WebCore::KeyboardEvent*);
119 virtual void handleKeyboardEvent(WebCore::KeyboardEvent*);
120 virtual void handleInputMethodKeydown(WebCore::KeyboardEvent*);
126 virtual bool doTextFieldCommandFromEvent(WebCore::Element*, WebCore::KeyboardEvent*);
/external/webkit/Source/WebKit/win/
DDOMEventsClasses.cpp289 WebCore::KeyboardEvent* keyEvent = static_cast<WebCore::KeyboardEvent*>(m_event.get()); in ctrlKey()
301 WebCore::KeyboardEvent* keyEvent = static_cast<WebCore::KeyboardEvent*>(m_event.get()); in shiftKey()
313 WebCore::KeyboardEvent* keyEvent = static_cast<WebCore::KeyboardEvent*>(m_event.get()); in altKey()
325 WebCore::KeyboardEvent* keyEvent = static_cast<WebCore::KeyboardEvent*>(m_event.get()); in metaKey()
337 WebCore::KeyboardEvent* keyEvent = static_cast<WebCore::KeyboardEvent*>(m_event.get()); in altGraphKey()
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
DWebEditorClientGtk.cpp35 void WebEditorClient::getEditorCommandsForKeyEvent(const KeyboardEvent* event, Vector<WTF::String>&… in getEditorCommandsForKeyEvent()
64 void WebEditorClient::handleKeyboardEvent(KeyboardEvent* event) in handleKeyboardEvent()
124 void WebEditorClient::handleInputMethodKeydown(KeyboardEvent*) in handleInputMethodKeydown() argument
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
DEditorClientHaiku.h90 virtual void handleKeyboardEvent(KeyboardEvent*);
91 virtual void handleInputMethodKeydown(KeyboardEvent*);
96 virtual bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DEditorClientQt.h90 virtual void handleKeyboardEvent(KeyboardEvent*);
91 virtual void handleInputMethodKeydown(KeyboardEvent*);
96 virtual bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
DWebEditorClient.h86 virtual void handleKeyboardEvent(WebCore::KeyboardEvent*);
87 virtual void handleInputMethodKeydown(WebCore::KeyboardEvent*);
92 virtual bool doTextFieldCommandFromEvent(WebCore::Element*, WebCore::KeyboardEvent*);
128 void getEditorCommandsForKeyEvent(const WebCore::KeyboardEvent*, Vector<WTF::String>&);
/external/webkit/Source/WebKit/android/WebCoreSupport/
DEditorClientAndroid.h96 virtual void handleKeyboardEvent(KeyboardEvent*);
97 virtual void handleInputMethodKeydown(KeyboardEvent*);
102 virtual bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*);

1234567