HomeSort by relevance Sort by last modified time
    Searched refs:cancelable (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /external/webkit/Source/WebCore/html/canvas/
WebGLContextEvent.cpp 35 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
36 : Event(type, canBubble, cancelable)
45 void WebGLContextEvent::initEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
50 Event::initEvent(type, canBubble, cancelable);
WebGLContextEvent.h 39 static PassRefPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
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/
BeforeProcessEvent.h 42 void initBeforeProcessEvent(const AtomicString& type, bool canBubble, bool cancelable)
44 initEvent(type, canBubble, cancelable);
BeforeProcessEvent.idl 30 void initBeforeProcessEvent(in DOMString type, in boolean canBubble, in boolean cancelable);
ClipboardEvent.cpp 32 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<Clipboard> clipboard)
33 : Event(eventType, canBubble, cancelable), m_clipboard(clipboard)
CustomEvent.cpp 41 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, ScriptValue detail)
46 initEvent(type, canBubble, cancelable);
PopStateEvent.cpp 44 void PopStateEvent::initPopStateEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> stateObject)
49 initEvent(type, canBubble, cancelable);
MutationEvent.cpp 33 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
36 : Event(type, canBubble, cancelable)
49 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
56 initEvent(type, canBubble, cancelable);
UIEvent.h 40 static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail)
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);
BeforeLoadEvent.h 44 void initBeforeLoadEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& url)
49 initEvent(type, canBubble, cancelable);
BeforeLoadEvent.idl 32 in boolean cancelable,
CompositionEvent.cpp 48 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data)
53 initUIEvent(type, canBubble, cancelable, view, 0);
DeviceMotionEvent.cpp 43 : Event(eventType, false, false) // Can't bubble, not cancelable
48 void DeviceMotionEvent::initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData* deviceMotionData)
53 initEvent(type, bubbles, cancelable);
DeviceOrientationEvent.cpp 43 : Event(eventType, false, false) // Can't bubble, not cancelable
48 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientation* orientation)
53 initEvent(type, bubbles, cancelable);
ErrorEvent.cpp 55 void ErrorEvent::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber)
60 initEvent(type, canBubble, cancelable);
HashChangeEvent.idl 28 in boolean cancelable,
UIEventWithKeyState.h 47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view,
49 : UIEvent(type, canBubble, cancelable, view, detail)
CustomEvent.h 44 void initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, ScriptValue detail);
MessageEvent.cpp 55 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray> ports)
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)
85 initMessageEvent(type, canBubble, cancelable, data, origin, lastEventId, source, ports);
DeviceOrientationEvent.idl 34 [Custom] void initDeviceOrientationEvent(in DOMString type, in boolean bubbles, in boolean cancelable, in double alpha, in double beta, in double gamma);
HashChangeEvent.h 38 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL)
43 initEvent(eventType, canBubble, cancelable);
PopStateEvent.h 46 void initPopStateEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue>);
CompositionEvent.h 46 void initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, const String& data);
  /external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/
create-event.js 9 shouldBeTrue("'cancelable' in event");
17 shouldBeTrue("typeof event.cancelable == 'boolean'");
  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
create-event.js 9 shouldBeTrue("'cancelable' in event");
16 shouldBeTrue("typeof event.cancelable == 'boolean'");

Completed in 92 milliseconds

1 2 3 4 5