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

123

/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());
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DRelatedEvent.cpp23 PassRefPtrWillBeRawPtr<RelatedEvent> RelatedEvent::create(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget) argument
25 return adoptRefWillBeNoop(new RelatedEvent(type, canBubble, cancelable, relatedTarget));
37 RelatedEvent::RelatedEvent(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget) argument
38 : Event(type, canBubble, cancelable)
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 DCustomEvent.cpp46 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> serializedDetail) argument
51 initEvent(type, canBubble, cancelable);
H A DMutationEvent.cpp33 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, argument
36 : Event(type, canBubble, cancelable)
49 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, argument
56 initEvent(type, canBubble, cancelable);
H A DMutationEvent.h49 const AtomicString& type, bool canBubble, PassRefPtrWillBeRawPtr<Node> relatedNode = nullptr,
52 return adoptRefWillBeNoop(new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange));
55 void initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange);
69 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange);
48 create( const AtomicString& type, bool canBubble, PassRefPtrWillBeRawPtr<Node> relatedNode = nullptr, const String& prevValue = String(), const String& newValue = String(), const String& attrName = String(), unsigned short attrChange = 0) argument
H A DUIEvent.h49 static PassRefPtrWillBeRawPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail) argument
51 return adoptRefWillBeNoop(new UIEvent(type, canBubble, cancelable, view, detail));
59 void initUIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, int detail);
82 UIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, int detail);
H A DHashChangeEvent.idl25 [Default=Undefined] optional boolean canBubble,
H A DRelatedEvent.h21 static PassRefPtrWillBeRawPtr<RelatedEvent> create(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget);
35 RelatedEvent(const AtomicString& type, bool canBubble, bool cancelable, EventTarget*);
H A DUIEventWithKeyState.h47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, argument
49 : UIEvent(type, canBubble, cancelable, view, detail)
H A DKeyboardEvent.h73 static PassRefPtrWillBeRawPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
77 return adoptRefWillBeNoop(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, location,
83 void initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
108 KeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
/external/chromium_org/third_party/WebKit/Source/modules/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 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 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 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.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.h40 static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create(bool canBubble, bool cancelable, RTCIceCandidate*);
50 RTCIceCandidateEvent(bool canBubble, bool cancelable, RTCIceCandidate*);
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*);
/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);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLContextEvent.h47 static PassRefPtrWillBeRawPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
49 return adoptRefWillBeNoop(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
65 WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
H A DWebGLContextEvent.cpp39 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
40 : Event(type, canBubble, cancelable)
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
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*);
H A DGamepadEvent.cpp18 GamepadEvent::GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Gamepad* gamepad) argument
19 : Event(type, canBubble, cancelable)

Completed in 242 milliseconds

123