Searched refs:canBubble (Results 1 - 25 of 43) sorted by relevance

12

/external/webkit/Source/WebCore/html/canvas/
H A DWebGLContextEvent.cpp35 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
36 : Event(type, canBubble, cancelable)
45 void WebGLContextEvent::initEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
50 Event::initEvent(type, canBubble, cancelable);
H A DWebGLContextEvent.h39 static PassRefPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
41 return adoptRef(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
45 void initEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
51 WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
/external/webkit/Source/WebCore/dom/
H A DBeforeProcessEvent.idl30 void initBeforeProcessEvent(in DOMString type, in boolean canBubble, in boolean cancelable);
H A DClipboardEvent.cpp32 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<Clipboard> clipboard) argument
33 : Event(eventType, canBubble, cancelable), m_clipboard(clipboard)
H A DCustomEvent.cpp41 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, ScriptValue detail) argument
46 initEvent(type, canBubble, cancelable);
H A DPopStateEvent.cpp44 void PopStateEvent::initPopStateEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> stateObject) argument
49 initEvent(type, canBubble, cancelable);
H A DMutationEvent.cpp33 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, argument
36 : Event(type, canBubble, cancelable)
49 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, argument
56 initEvent(type, canBubble, cancelable);
H A DBeforeLoadEvent.idl31 in boolean canBubble,
H A DBeforeProcessEvent.h42 void initBeforeProcessEvent(const AtomicString& type, bool canBubble, bool cancelable) argument
44 initEvent(type, canBubble, cancelable);
H A DCompositionEvent.cpp48 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) argument
53 initUIEvent(type, canBubble, cancelable, view, 0);
H A DBeforeLoadEvent.h44 void initBeforeLoadEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& url) argument
49 initEvent(type, canBubble, cancelable);
H A DErrorEvent.cpp55 void ErrorEvent::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber) argument
60 initEvent(type, canBubble, cancelable);
H A DHashChangeEvent.idl27 in boolean canBubble,
H A DMessageEvent.cpp55 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray> ports) argument
60 initEvent(type, canBubble, cancelable);
78 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, MessagePort* port) argument
85 initMessageEvent(type, canBubble, cancelable, data, origin, lastEventId, source, ports);
H A DMutationEvent.h47 static PassRefPtr<MutationEvent> create(const AtomicString& type, bool canBubble, PassRefPtr<Node> relatedNode = 0, argument
50 return adoptRef(new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange));
53 void initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
67 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
H A DUIEvent.h40 static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail) argument
42 return adoptRef(new UIEvent(type, canBubble, cancelable, view, detail));
46 void initUIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);
66 UIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);
H A DHashChangeEvent.h38 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) argument
43 initEvent(eventType, canBubble, cancelable);
H A DUIEventWithKeyState.h47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, argument
49 : UIEvent(type, canBubble, cancelable, view, detail)
H A DCustomEvent.h44 void initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, ScriptValue detail);
H A DKeyboardEvent.cpp71 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, argument
74 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
86 void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
93 initUIEvent(type, canBubble, cancelable, view, 0);
H A DKeyboardEvent.h65 static PassRefPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
69 return adoptRef(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, keyLocation,
74 void initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
101 KeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
H A DKeyboardEvent.idl48 in boolean canBubble,
65 in boolean canBubble,
H A DMouseEvent.h42 static PassRefPtr<MouseEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, argument
47 return adoptRef(new MouseEvent(type, canBubble, cancelable, view, detail, screenX, screenY, pageX, pageY,
54 void initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>,
78 MouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>,
H A DPopStateEvent.h46 void initPopStateEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue>);
H A DMessageEvent.h52 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray>);
63 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, MessagePort*);

Completed in 1829 milliseconds

12