Home | History | Annotate | Download | only in events

Lines Matching defs:KeyboardEvent

24 #include "core/events/KeyboardEvent.h"
67 static inline KeyboardEvent::KeyLocationCode keyLocationCode(const PlatformKeyboardEvent& key)
70 return KeyboardEvent::DOM_KEY_LOCATION_NUMPAD;
77 return KeyboardEvent::DOM_KEY_LOCATION_LEFT;
82 return KeyboardEvent::DOM_KEY_LOCATION_RIGHT;
84 return KeyboardEvent::DOM_KEY_LOCATION_STANDARD;
98 KeyboardEvent::KeyboardEvent()
106 KeyboardEvent::KeyboardEvent(const PlatformKeyboardEvent& key, AbstractView* view)
118 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, const KeyboardEventInit& initializer)
128 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view,
140 KeyboardEvent::~KeyboardEvent()
144 void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view,
162 bool KeyboardEvent::getModifierState(const String& keyIdentifier) const
177 int KeyboardEvent::keyCode() const
190 int KeyboardEvent::charCode() const
202 const AtomicString& KeyboardEvent::interfaceName() const
204 return EventNames::KeyboardEvent;
207 bool KeyboardEvent::isKeyboardEvent() const
212 int KeyboardEvent::which() const
219 void KeyboardEvent::trace(Visitor* visitor)
224 PassRefPtrWillBeRawPtr<KeyboardEventDispatchMediator> KeyboardEventDispatchMediator::create(PassRefPtrWillBeRawPtr<KeyboardEvent> event)
229 KeyboardEventDispatchMediator::KeyboardEventDispatchMediator(PassRefPtrWillBeRawPtr<KeyboardEvent> event)