Searched defs:cancelable (Results 1 - 25 of 43) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DBeforeProcessEvent.h42 void initBeforeProcessEvent(const AtomicString& type, bool canBubble, bool cancelable) argument
44 initEvent(type, canBubble, 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 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 DPopStateEvent.cpp44 void PopStateEvent::initPopStateEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> stateObject) argument
49 initEvent(type, canBubble, 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 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 DCustomEvent.cpp41 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, ScriptValue detail) argument
46 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.h38 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) argument
43 initEvent(eventType, 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 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 DUIEventWithKeyState.h47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, argument
49 : UIEvent(type, canBubble, cancelable, view, detail)
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 DTextEvent.cpp91 void TextEvent::initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) argument
96 initUIEvent(type, canBubble, cancelable, view, 0);
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);
/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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowProgressDialog.java28 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable) { argument
29 return show(context, title, message, indeterminate, cancelable, null);
33 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable, ProgressDialog.OnCancelListener onCancelListener) { argument
38 progressDialog.setCancelable(cancelable);
H A DShadowDialogFragment.java24 private boolean cancelable = true; // defaults to true field in class:ShadowDialogFragment
50 dialog.setCancelable(cancelable);
81 return cancelable;
85 public void setCancelable(boolean cancelable) { argument
86 this.cancelable = cancelable;
88 dialog.setCancelable(cancelable);
/external/webkit/Source/WebCore/bindings/js/
H A DJSDeviceOrientationEventCustom.cpp66 bool cancelable = exec->argument(2).toBoolean(exec); local
77 imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
H A DJSDeviceMotionEventCustom.cpp168 bool cancelable = exec->argument(2).toBoolean(exec); local
188 imp->initDeviceMotionEvent(type, bubbles, cancelable, deviceMotionData.get());
/external/webkit/Source/WebCore/storage/
H A DStorageEvent.cpp63 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
68 initEvent(type, canBubble, cancelable);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DeviceOrientationEventCustom.cpp75 bool cancelable = args[2]->BooleanValue(); local
85 imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
H A DV8DeviceMotionEventCustom.cpp171 bool cancelable = args[2]->BooleanValue(); local
178 imp->initDeviceMotionEvent(type, bubbles, cancelable, deviceMotionData.get());

Completed in 1655 milliseconds

12