Searched defs:UIEvent (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/dom/
H A DUIEvent.cpp24 #include "UIEvent.h"
30 UIEvent::UIEvent() function in class:WebCore::UIEvent
35 UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg, PassRefPtr<AbstractView> viewArg, int detailArg) function in class:WebCore::UIEvent
42 UIEvent::~UIEvent()
46 void UIEvent::initUIEvent(const AtomicString& typeArg, bool canBubbleArg, bool cancelableArg, PassRefPtr<AbstractView> viewArg, int detailArg)
57 bool UIEvent::isUIEvent() const
62 int UIEvent
[all...]
H A DUIEvent.h34 class UIEvent : public Event { class in namespace:WebCore
36 static PassRefPtr<UIEvent> create()
38 return adoptRef(new UIEvent);
40 static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail)
42 return adoptRef(new UIEvent(type, canBubble, cancelable, view, detail));
44 virtual ~UIEvent();
65 UIEvent();
66 UIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);

Completed in 119 milliseconds