Searched refs:cancelable (Results 1 - 25 of 74) sorted by relevance

123

/external/webkit/Source/WebCore/html/canvas/
H A DWebGLContextEvent.cpp35 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
36 : Event(type, canBubble, cancelable)
45 void WebGLContextEvent::initEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
50 Event::initEvent(type, canBubble, cancelable);
H A DWebGLContextEvent.h39 static PassRefPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
41 return adoptRef(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
45 void initEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
51 WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
/external/webkit/Source/WebCore/dom/
H A DBeforeProcessEvent.idl30 void initBeforeProcessEvent(in DOMString type, in boolean canBubble, in boolean cancelable);
H A DClipboardEvent.cpp32 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<Clipboard> clipboard) argument
33 : Event(eventType, canBubble, cancelable), m_clipboard(clipboard)
H A DCustomEvent.cpp41 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, ScriptValue detail) argument
46 initEvent(type, canBubble, cancelable);
H A DPopStateEvent.cpp44 void PopStateEvent::initPopStateEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> stateObject) argument
49 initEvent(type, canBubble, cancelable);
H A DMutationEvent.cpp33 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, argument
36 : Event(type, canBubble, cancelable)
49 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, argument
56 initEvent(type, canBubble, cancelable);
H A DBeforeLoadEvent.idl32 in boolean cancelable,
H A DBeforeProcessEvent.h42 void initBeforeProcessEvent(const AtomicString& type, bool canBubble, bool cancelable) argument
44 initEvent(type, canBubble, cancelable);
H A DCompositionEvent.cpp48 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) argument
53 initUIEvent(type, canBubble, cancelable, view, 0);
H A DDeviceMotionEvent.cpp43 : Event(eventType, false, false) // Can't bubble, not cancelable
48 void DeviceMotionEvent::initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData* deviceMotionData) argument
53 initEvent(type, bubbles, cancelable);
H A DDeviceOrientationEvent.cpp43 : Event(eventType, false, false) // Can't bubble, not cancelable
48 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientation* orientation) argument
53 initEvent(type, bubbles, cancelable);
H A DBeforeLoadEvent.h44 void initBeforeLoadEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& url) argument
49 initEvent(type, canBubble, cancelable);
H A DErrorEvent.cpp55 void ErrorEvent::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber) argument
60 initEvent(type, canBubble, cancelable);
H A DHashChangeEvent.idl28 in boolean cancelable,
H A DMessageEvent.cpp55 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
60 initEvent(type, canBubble, cancelable);
78 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, MessagePort* port) argument
85 initMessageEvent(type, canBubble, cancelable, data, origin, lastEventId, source, ports);
H A DUIEvent.h40 static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail) argument
42 return adoptRef(new UIEvent(type, canBubble, cancelable, view, detail));
46 void initUIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);
66 UIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);
H A DDeviceOrientationEvent.idl34 [Custom] void initDeviceOrientationEvent(in DOMString type, in boolean bubbles, in boolean cancelable, in double alpha, in double beta, in double gamma);
H A DHashChangeEvent.h38 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) argument
43 initEvent(eventType, canBubble, cancelable);
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 DCustomEvent.h44 void initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, ScriptValue detail);
H A DDeviceMotionEvent.h47 void initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData*);
H A DDeviceOrientationEvent.h47 void initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientation*);
H A DKeyboardEvent.cpp71 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, argument
74 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
86 void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
93 initUIEvent(type, canBubble, cancelable, view, 0);
H A DKeyboardEvent.h65 static PassRefPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
69 return adoptRef(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, keyLocation,
74 void initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
101 KeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,

Completed in 142 milliseconds

123