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

12

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMCustomEvent.cpp43 void WebDOMCustomEvent::initCustomEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& webSerializedScriptValue) argument
48 unwrap<CustomEvent>()->initCustomEvent(type, canBubble, cancelable, serializedScriptValue.get());
H A DWebDOMMessageEvent.cpp49 void WebDOMMessageEvent::initMessageEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData, const WebString& origin, const WebFrame* sourceFrame, const WebString& lastEventId) argument
57 unwrap<MessageEvent>()->initMessageEvent(type, canBubble, cancelable, messageData, origin, lastEventId, window, ports.release());
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCIceCandidateEvent.cpp39 PassRefPtr<RTCIceCandidateEvent> RTCIceCandidateEvent::create(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate> candidate) argument
41 return adoptRef(new RTCIceCandidateEvent(canBubble, cancelable, candidate));
49 RTCIceCandidateEvent::RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate> candidate) argument
50 : Event(eventNames().icecandidateEvent, canBubble, cancelable)
H A DMediaStreamEvent.cpp43 PassRefPtr<MediaStreamEvent> MediaStreamEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream> stream) argument
45 return adoptRef(new MediaStreamEvent(type, canBubble, cancelable, stream));
58 MediaStreamEvent::MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream> stream) argument
59 : Event(type, canBubble, cancelable)
H A DMediaStreamTrackEvent.cpp38 PassRefPtr<MediaStreamTrackEvent> MediaStreamTrackEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStreamTrack> track) argument
40 return adoptRef(new MediaStreamTrackEvent(type, canBubble, cancelable, track));
49 MediaStreamTrackEvent::MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStreamTrack> track) argument
50 : Event(type, canBubble, cancelable)
H A DRTCDataChannelEvent.cpp38 PassRefPtr<RTCDataChannelEvent> RTCDataChannelEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel> channel) argument
40 return adoptRef(new RTCDataChannelEvent(type, canBubble, cancelable, channel));
49 RTCDataChannelEvent::RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel> channel) argument
50 : Event(type, canBubble, cancelable)
/external/chromium_org/base/
H A Dcancelable_callback_unittest.cc32 CancelableClosure cancelable(
35 base::Closure callback = cancelable.callback();
42 cancelable.Cancel();
53 CancelableClosure cancelable(
56 base::Closure callback1 = cancelable.callback();
57 base::Closure callback2 = cancelable.callback();
58 cancelable.Cancel();
67 cancelable.Cancel();
70 base::Closure callback3 = cancelable.callback();
81 CancelableClosure cancelable(
147 CancelableClosure cancelable; local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8DeviceOrientationEventCustom.cpp41 bool cancelable = args[2]->BooleanValue(); local
53 imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DClipboardEvent.cpp35 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<Clipboard> clipboard) argument
36 : Event(eventType, canBubble, cancelable), m_clipboard(clipboard)
H A DCompositionEvent.cpp61 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) argument
66 initUIEvent(type, canBubble, cancelable, view, 0);
H A DCustomEvent.cpp49 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> serializedDetail) argument
54 initEvent(type, canBubble, cancelable);
H A DMutationEvent.cpp36 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, argument
39 : Event(type, canBubble, cancelable)
53 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, argument
60 initEvent(type, canBubble, cancelable);
H A DUIEvent.h48 static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail) argument
50 return adoptRef(new UIEvent(type, canBubble, cancelable, view, detail));
58 void initUIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);
79 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 DFocusEvent.cpp56 FocusEvent::FocusEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, EventTarget* relatedTarget) argument
57 : UIEvent(type, canBubble, cancelable, view, detail)
H A DHashChangeEvent.h55 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) argument
60 initEvent(eventType, canBubble, cancelable);
H A DMessageEvent.cpp116 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray> ports) argument
121 initEvent(type, canBubble, cancelable);
130 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
135 initEvent(type, canBubble, cancelable);
H A DTextEvent.cpp95 void TextEvent::initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) argument
100 initUIEvent(type, canBubble, cancelable, view, 0);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLContextEvent.cpp42 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
43 : Event(type, canBubble, cancelable)
H A DWebGLContextEvent.h45 static PassRefPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
47 return adoptRef(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
61 WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceMotionEvent.cpp47 : Event(eventType, false, false) // Can't bubble, not cancelable
53 void DeviceMotionEvent::initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData* deviceMotionData) argument
58 initEvent(type, bubbles, cancelable);
H A DDeviceOrientationEvent.cpp45 : Event(eventType, false, false) // Can't bubble, not cancelable
51 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData* orientation) argument
56 initEvent(type, bubbles, cancelable);
/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/chromium_org/third_party/WebKit/Source/core/storage/
H A DStorageEvent.cpp84 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
89 initEvent(type, canBubble, cancelable);

Completed in 7431 milliseconds

12