Searched refs:canBubble (Results 26 - 50 of 51) sorted by relevance

123

/external/chromium_org/third_party/WebKit/public/web/
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 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 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 DUIEvent.idl27 [Default=Undefined] optional boolean canBubble,
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 DCustomEvent.h52 void initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue>);
H A DKeyboardEvent.cpp122 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, argument
125 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
136 void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
143 initUIEvent(type, canBubble, cancelable, view, 0);
H A DMutationEvent.idl35 [Default=Undefined] optional boolean canBubble,
H A DTextEvent.cpp91 void TextEvent::initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, const String& data) argument
96 initUIEvent(type, canBubble, cancelable, view, 0);
H A DMouseEvent.h59 static PassRefPtrWillBeRawPtr<MouseEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>,
72 void initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>,
100 MouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>,
H A DMouseEvent.cpp68 PassRefPtrWillBeRawPtr<MouseEvent> MouseEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, argument
74 return adoptRefWillBeNoop(new MouseEvent(type, canBubble, cancelable, view,
86 MouseEvent::MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, argument
92 : MouseRelatedEvent(eventType, canBubble, cancelable, view, detail, IntPoint(screenX, screenY),
121 void MouseEvent::initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, argument
129 initUIEvent(type, canBubble, cancelable, view, detail);
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 DKeyboardEvent.idl42 [Default=Undefined] optional boolean canBubble,
H A DCompositionEvent.h61 void initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, const String& data);
H A DMessageEvent.cpp138 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& origin, const String& lastEventId, LocalDOMWindow* source, PassOwnPtrWillBeRawPtr<MessagePortArray> ports) argument
143 initEvent(type, canBubble, cancelable);
152 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, LocalDOMWindow* source, PassOwnPtrWillBeRawPtr<MessagePortArray> ports) argument
157 initEvent(type, canBubble, cancelable);
H A DMouseRelatedEvent.h67 MouseRelatedEvent(const AtomicString& type, bool canBubble, bool cancelable,
H A DEvent.h110 void initEvent(const AtomicString& type, bool canBubble, bool cancelable);
190 Event(const AtomicString& type, bool canBubble, bool cancelable);
H A DMouseRelatedEvent.cpp55 MouseRelatedEvent::MouseRelatedEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> abstractView, argument
59 : UIEventWithKeyState(eventType, canBubble, cancelable, abstractView, detail, ctrlKey, altKey, shiftKey, metaKey)
H A DTextEvent.h48 void initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, const String& data);
H A DMessageEvent.h84 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& origin, const String& lastEventId, LocalDOMWindow* source, PassOwnPtrWillBeRawPtr<MessagePortArray>);
85 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, LocalDOMWindow* source, PassOwnPtrWillBeRawPtr<MessagePortArray>);
H A DMouseEvent.idl39 [Default=Undefined] optional boolean canBubble,
/external/chromium_org/third_party/WebKit/Source/web/
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/Source/core/storage/
H A DStorageEvent.cpp80 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
85 initEvent(type, canBubble, cancelable);
H A DStorageEvent.h61 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
/external/chromium_org/remoting/webapp/js_proto/
H A Ddom_proto.js233 * @param {boolean} canBubble
249 type, canBubble, cancelable, view, detail,

Completed in 198 milliseconds

123