Home
last modified time | relevance | path

Searched refs:cancelable (Results 1 – 25 of 83) sorted by relevance

1234

/external/webkit/Source/WebCore/html/canvas/
DWebGLContextEvent.cpp35 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, con… in WebGLContextEvent() argument
36 : Event(type, canBubble, cancelable) in WebGLContextEvent()
45 void WebGLContextEvent::initEvent(const AtomicString& type, bool canBubble, bool cancelable, const … in initEvent() argument
50 Event::initEvent(type, canBubble, cancelable); in initEvent()
DWebGLContextEvent.h39 …bGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& s… in create() argument
41 return adoptRef(new WebGLContextEvent(type, canBubble, cancelable, statusMessage)); in create()
45 …void initEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMess…
51 …WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusM…
/external/webkit/Source/WebCore/dom/
DMutationEvent.cpp33 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<… in MutationEvent() argument
36 : Event(type, canBubble, cancelable) in MutationEvent()
49 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, Pa… in initMutationEvent() argument
56 initEvent(type, canBubble, cancelable); in initMutationEvent()
DUIEvent.h40 …static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassR… in create() argument
42 return adoptRef(new UIEvent(type, canBubble, cancelable, view, detail)); in create()
46 …void initUIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractVie…
66 …UIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int d…
DMessageEvent.cpp55 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, Pass… in initMessageEvent() argument
60 initEvent(type, canBubble, cancelable); in initMessageEvent()
78 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, Pass… in initMessageEvent() argument
85 initMessageEvent(type, canBubble, cancelable, data, origin, lastEventId, source, ports); in initMessageEvent()
DEvent.h68 static PassRefPtr<Event> create(const AtomicString& type, bool canBubble, bool cancelable) in create() argument
70 return adoptRef(new Event(type, canBubble, cancelable)); in create()
74 void initEvent(const AtomicString& type, bool canBubble, bool cancelable);
88 bool cancelable() const { return m_cancelable; } in cancelable() function
177 Event(const AtomicString& type, bool canBubble, bool cancelable);
DKeyboardEvent.h65 …r<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* v… in create() argument
69 … return adoptRef(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, keyLocation, in create()
74 … void initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
101 KeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
DKeyboardEvent.cpp71 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, Abstra… in KeyboardEvent() argument
74 …: UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKe… in KeyboardEvent()
86 void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, Ab… in initKeyboardEvent() argument
93 initUIEvent(type, canBubble, cancelable, view, 0); in initKeyboardEvent()
DMouseEvent.h42 …fPtr<MouseEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Abst…
47 …return adoptRef(new MouseEvent(type, canBubble, cancelable, view, detail, screenX, screenY, pageX,…
54 …void initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Abstract…
78 … MouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>,
DMouseEvent.cpp52 MouseEvent::MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<A… in MouseEvent() argument
57 : MouseRelatedEvent(eventType, canBubble, cancelable, view, detail, screenX, screenY, in MouseEvent()
70 void MouseEvent::initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefP… in initMouseEvent() argument
78 initUIEvent(type, canBubble, cancelable, view, detail); in initMouseEvent()
184 …nitMouseEvent(eventNames().dblclickEvent, event()->bubbles(), event()->cancelable(), event()->view… in dispatchEvent()
DCustomEvent.cpp41 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, Script… in initCustomEvent() argument
46 initEvent(type, canBubble, cancelable); in initCustomEvent()
DClipboardEvent.cpp32 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, Pass… in ClipboardEvent() argument
33 : Event(eventType, canBubble, cancelable), m_clipboard(clipboard) in ClipboardEvent()
DPopStateEvent.cpp44 void PopStateEvent::initPopStateEvent(const AtomicString& type, bool canBubble, bool cancelable, Pa… in initPopStateEvent() argument
49 initEvent(type, canBubble, cancelable); in initPopStateEvent()
DBeforeProcessEvent.h42 void initBeforeProcessEvent(const AtomicString& type, bool canBubble, bool cancelable) in initBeforeProcessEvent() argument
44 initEvent(type, canBubble, cancelable); in initBeforeProcessEvent()
DDeviceMotionEvent.cpp48 …nt::initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionDat… in initDeviceMotionEvent() argument
53 initEvent(type, bubbles, cancelable); in initDeviceMotionEvent()
DDeviceOrientationEvent.cpp48 …nitDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientati… in initDeviceOrientationEvent() argument
53 initEvent(type, bubbles, cancelable); in initDeviceOrientationEvent()
DCompositionEvent.cpp48 …t::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Abst… in initCompositionEvent() argument
53 initUIEvent(type, canBubble, cancelable, view, 0); in initCompositionEvent()
DErrorEvent.cpp55 void ErrorEvent::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const St… in initErrorEvent() argument
60 initEvent(type, canBubble, cancelable); in initErrorEvent()
DBeforeLoadEvent.h44 …void initBeforeLoadEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& … in initBeforeLoadEvent() argument
49 initEvent(type, canBubble, cancelable); in initBeforeLoadEvent()
DUIEventWithKeyState.h47 …UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Abstract… in UIEventWithKeyState() argument
49 : UIEvent(type, canBubble, cancelable, view, detail) in UIEventWithKeyState()
DHashChangeEvent.h38 …void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const Str… in initHashChangeEvent() argument
43 initEvent(eventType, canBubble, cancelable); in initHashChangeEvent()
/external/webkit/Source/WebKit/win/
DDOMEventsClasses.h151 virtual HRESULT STDMETHODCALLTYPE cancelable(
231 virtual HRESULT STDMETHODCALLTYPE cancelable( in cancelable() function
232 /* [retval][out] */ BOOL* result) { return DOMEvent::cancelable(result); } in cancelable()
256 /* [in] */ BOOL cancelable,
340 virtual HRESULT STDMETHODCALLTYPE cancelable( in cancelable() function
341 /* [retval][out] */ BOOL* result) { return DOMEvent::cancelable(result); } in cancelable()
365 /* [in] */ BOOL cancelable, in initUIEvent() argument
367 …/* [in] */ long detail) { return DOMUIEvent::initUIEvent(type, canBubble, cancelable, view, detail… in initUIEvent()
419 /* [in] */ BOOL cancelable,
488 virtual HRESULT STDMETHODCALLTYPE cancelable( in cancelable() function
[all …]
/external/webkit/LayoutTests/dom/html/level2/events/
DinitEvent03.js106 actualCancelable = event.cancelable;
116 actualCancelable = event.cancelable;
DinitEvent06.js108 actualCancelable = event.cancelable;
118 actualCancelable = event.cancelable;
/external/webkit/LayoutTests/dom/xhtml/level2/events/
DinitEvent03.js106 actualCancelable = event.cancelable;
116 actualCancelable = event.cancelable;

1234