Searched defs:canBubble (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMCustomEvent.cpp43 void WebDOMCustomEvent::initCustomEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& webSerializedScriptValue) argument
48 unwrap<CustomEvent>()->initCustomEvent(type, canBubble, cancelable, serializedScriptValue.get());
H A DWebDOMMessageEvent.cpp49 void WebDOMMessageEvent::initMessageEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData, const WebString& origin, const WebFrame* sourceFrame, const WebString& lastEventId) argument
57 unwrap<MessageEvent>()->initMessageEvent(type, canBubble, cancelable, messageData, origin, lastEventId, window, ports.release());
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCIceCandidateEvent.cpp39 PassRefPtr<RTCIceCandidateEvent> RTCIceCandidateEvent::create(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate> candidate) argument
41 return adoptRef(new RTCIceCandidateEvent(canBubble, cancelable, candidate));
49 RTCIceCandidateEvent::RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate> candidate) argument
50 : Event(eventNames().icecandidateEvent, canBubble, cancelable)
H A DMediaStreamEvent.cpp43 PassRefPtr<MediaStreamEvent> MediaStreamEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream> stream) argument
45 return adoptRef(new MediaStreamEvent(type, canBubble, cancelable, stream));
58 MediaStreamEvent::MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream> stream) argument
59 : Event(type, canBubble, cancelable)
H A DMediaStreamTrackEvent.cpp38 PassRefPtr<MediaStreamTrackEvent> MediaStreamTrackEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStreamTrack> track) argument
40 return adoptRef(new MediaStreamTrackEvent(type, canBubble, cancelable, track));
49 MediaStreamTrackEvent::MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStreamTrack> track) argument
50 : Event(type, canBubble, cancelable)
H A DRTCDataChannelEvent.cpp38 PassRefPtr<RTCDataChannelEvent> RTCDataChannelEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel> channel) argument
40 return adoptRef(new RTCDataChannelEvent(type, canBubble, cancelable, channel));
49 RTCDataChannelEvent::RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel> channel) argument
50 : Event(type, canBubble, cancelable)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DClipboardEvent.cpp35 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<Clipboard> clipboard) argument
36 : Event(eventType, canBubble, cancelable), m_clipboard(clipboard)
H A DCompositionEvent.cpp61 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) argument
66 initUIEvent(type, canBubble, cancelable, view, 0);
H A DCustomEvent.cpp49 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> serializedDetail) argument
54 initEvent(type, canBubble, cancelable);
H A DMutationEvent.cpp36 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, argument
39 : Event(type, canBubble, cancelable)
53 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, argument
60 initEvent(type, canBubble, cancelable);
H A DUIEvent.h48 static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail) argument
50 return adoptRef(new UIEvent(type, canBubble, cancelable, view, detail));
58 void initUIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);
79 UIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);
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 DFocusEvent.cpp56 FocusEvent::FocusEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, EventTarget* relatedTarget) argument
57 : UIEvent(type, canBubble, cancelable, view, detail)
H A DHashChangeEvent.h55 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) argument
60 initEvent(eventType, canBubble, cancelable);
H A DMessageEvent.cpp116 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray> ports) argument
121 initEvent(type, canBubble, cancelable);
130 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
135 initEvent(type, canBubble, cancelable);
H A DTextEvent.cpp95 void TextEvent::initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) argument
100 initUIEvent(type, canBubble, cancelable, view, 0);
H A DFocusEvent.h49 static PassRefPtr<FocusEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, EventTarget* relatedTarget) argument
51 return adoptRef(new FocusEvent(type, canBubble, cancelable, view, detail, relatedTarget));
67 FocusEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int, EventTarget*);
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 DKeyboardEvent.cpp126 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, argument
129 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
141 void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
148 initUIEvent(type, canBubble, cancelable, view, 0);
H A DKeyboardEvent.h74 static PassRefPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
78 return adoptRef(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, location,
84 void initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
108 KeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
H A DMouseEvent.cpp71 PassRefPtr<MouseEvent> MouseEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, argument
78 return MouseEvent::create(type, canBubble, cancelable, view,
84 PassRefPtr<MouseEvent> MouseEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, argument
90 return adoptRef(new MouseEvent(type, canBubble, cancelable, view,
103 MouseEvent::MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, argument
109 : MouseRelatedEvent(eventType, canBubble, cancelable, view, detail, IntPoint(screenX, screenY),
139 void MouseEvent::initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, argument
147 initUIEvent(type, canBubble, cancelable, view, detail);
H A DMouseRelatedEvent.cpp55 MouseRelatedEvent::MouseRelatedEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<AbstractView> abstractView, argument
59 : UIEventWithKeyState(eventType, canBubble, cancelable, abstractView, detail, ctrlKey, altKey, shiftKey, metaKey)
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLContextEvent.cpp42 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
43 : Event(type, canBubble, cancelable)
H A DWebGLContextEvent.h45 static PassRefPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
47 return adoptRef(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
61 WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
/external/chromium_org/third_party/WebKit/Source/core/storage/
H A DStorageEvent.cpp84 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
89 initEvent(type, canBubble, cancelable);

Completed in 331 milliseconds

12