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

1 2 3

  /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 31 in boolean canBubble,
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);
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 27 in boolean canBubble,
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);
MutationEvent.h 47 static PassRefPtr<MutationEvent> create(const AtomicString& type, bool canBubble, PassRefPtr<Node> relatedNode = 0,
50 return adoptRef(new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange));
53 void initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
67 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
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);
ErrorEvent.h 51 void initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber);
KeyboardEvent.cpp 71 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view,
74 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
86 void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view,
93 initUIEvent(type, canBubble, cancelable, view, 0);
KeyboardEvent.h 65 static PassRefPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view,
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*,
KeyboardEvent.idl 48 in boolean canBubble,
65 in boolean canBubble,

Completed in 336 milliseconds

1 2 3