Searched refs:canBubble (Results 1 - 25 of 51) sorted by last modified time

123

/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadEvent.cpp18 GamepadEvent::GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Gamepad* gamepad) argument
19 : Event(type, canBubble, cancelable)
H A DGamepadEvent.h26 static PassRefPtrWillBeRawPtr<GamepadEvent> create(const AtomicString& type, bool canBubble, bool cancelable, Gamepad* gamepad) argument
28 return adoptRefWillBeNoop(new GamepadEvent(type, canBubble, cancelable, gamepad));
44 GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Gamepad*);
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaStreamEvent.cpp40 PassRefPtrWillBeRawPtr<MediaStreamEvent> MediaStreamEvent::create(const AtomicString& type, bool canBubble, bool cancelable, MediaStream* stream) argument
42 return adoptRefWillBeNoop(new MediaStreamEvent(type, canBubble, cancelable, stream));
54 MediaStreamEvent::MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, MediaStream* stream) argument
55 : Event(type, canBubble, cancelable)
H A DMediaStreamEvent.h46 static PassRefPtrWillBeRawPtr<MediaStreamEvent> create(const AtomicString& type, bool canBubble, bool cancelable, MediaStream*);
58 MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, MediaStream*);
H A DMediaStreamTrackEvent.cpp37 PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> MediaStreamTrackEvent::create(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack* track) argument
39 return adoptRefWillBeNoop(new MediaStreamTrackEvent(type, canBubble, cancelable, track));
47 MediaStreamTrackEvent::MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack* track) argument
48 : Event(type, canBubble, cancelable)
H A DMediaStreamTrackEvent.h41 static PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> create(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack*);
52 MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack*);
H A DRTCDataChannelEvent.cpp35 PassRefPtrWillBeRawPtr<RTCDataChannelEvent> RTCDataChannelEvent::create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel* channel) argument
37 return adoptRefWillBeNoop(new RTCDataChannelEvent(type, canBubble, cancelable, channel));
45 RTCDataChannelEvent::RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel* channel) argument
46 : Event(type, canBubble, cancelable)
H A DRTCDataChannelEvent.h40 static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
50 RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
H A DRTCIceCandidateEvent.cpp37 PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> RTCIceCandidateEvent::create(bool canBubble, bool cancelable, RTCIceCandidate* candidate) argument
39 return adoptRefWillBeNoop(new RTCIceCandidateEvent(canBubble, cancelable, candidate));
46 RTCIceCandidateEvent::RTCIceCandidateEvent(bool canBubble, bool cancelable, RTCIceCandidate* candidate) argument
47 : Event(EventTypeNames::icecandidate, canBubble, cancelable)
H A DRTCIceCandidateEvent.h40 static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create(bool canBubble, bool cancelable, RTCIceCandidate*);
50 RTCIceCandidateEvent(bool canBubble, bool cancelable, RTCIceCandidate*);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMCustomEvent.cpp41 void WebDOMCustomEvent::initCustomEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& webSerializedScriptValue) argument
46 unwrap<CustomEvent>()->initCustomEvent(type, canBubble, cancelable, serializedScriptValue.get());
H A DWebDOMMessageEvent.cpp46 void WebDOMMessageEvent::initMessageEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData, const WebString& origin, const WebFrame* sourceFrame, const WebString& lastEventId, const WebMessagePortChannelArray& webChannels) argument
56 unwrap<MessageEvent>()->initMessageEvent(type, canBubble, cancelable, messageData, origin, lastEventId, window, ports.release());
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDOMCustomEvent.h43 BLINK_EXPORT void initCustomEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData);
H A DWebDOMMessageEvent.h50 BLINK_EXPORT void initMessageEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData, const WebString& origin, const WebFrame* sourceFrame, const WebString& lastEventId, const WebMessagePortChannelArray& channels = WebMessagePortChannelArray());
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DClipboardEvent.cpp34 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> clipboardData) argument
35 : Event(eventType, canBubble, cancelable), m_clipboardData(clipboardData)
H A DClipboardEvent.h37 static PassRefPtrWillBeRawPtr<ClipboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> dataTransfer) argument
39 return adoptRefWillBeNoop(new ClipboardEvent(type, canBubble, cancelable, dataTransfer));
48 ClipboardEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> clipboardData);
H A DCompositionEvent.cpp65 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, const String& data) argument
70 initUIEvent(type, canBubble, cancelable, view, 0);
H A DCompositionEvent.h61 void initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, const String& data);
H A DCustomEvent.cpp46 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> serializedDetail) argument
51 initEvent(type, canBubble, cancelable);
H A DCustomEvent.h52 void initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue>);
H A DEvent.h110 void initEvent(const AtomicString& type, bool canBubble, bool cancelable);
190 Event(const AtomicString& type, bool canBubble, bool cancelable);
H A DFocusEvent.cpp53 FocusEvent::FocusEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, EventTarget* relatedTarget) argument
54 : UIEvent(type, canBubble, cancelable, view, detail)
H A DFocusEvent.h50 static PassRefPtrWillBeRawPtr<FocusEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, EventTarget* relatedTarget) argument
52 return adoptRefWillBeNoop(new FocusEvent(type, canBubble, cancelable, view, detail, relatedTarget));
70 FocusEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, int, EventTarget*);
H A DHashChangeEvent.h53 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) argument
58 initEvent(eventType, canBubble, cancelable);
H A DHashChangeEvent.idl25 [Default=Undefined] optional boolean canBubble,

Completed in 3379 milliseconds

123