Home | History | Annotate | Download | only in dom

Lines Matching defs:KeyboardEvent

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*);
98 KeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
112 KeyboardEvent* findKeyboardEvent(Event*);