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

123

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMCustomEvent.cpp41 void WebDOMCustomEvent::initCustomEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& webSerializedScriptValue) argument
46 unwrap<CustomEvent>()->initCustomEvent(type, canBubble, cancelable, serializedScriptValue.get());
H A DWebDOMMessageEvent.cpp46 void WebDOMMessageEvent::initMessageEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData, const WebString& origin, const WebFrame* sourceFrame, const WebString& lastEventId, const WebMessagePortChannelArray& webChannels) argument
56 unwrap<MessageEvent>()->initMessageEvent(type, canBubble, cancelable, messageData, origin, lastEventId, window, ports.release());
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPlatformTouchEvent.h39 bool cancelable() const { return m_cancelable; } function in class:blink::PlatformTouchEvent
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8DeviceOrientationEventCustom.cpp40 bool cancelable = info[2]->BooleanValue(); local
52 impl->initDeviceOrientationEvent(type, bubbles, cancelable, orientation);
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DClipboardEvent.cpp34 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> clipboardData) argument
35 : Event(eventType, canBubble, cancelable), m_clipboardData(clipboardData)
H A DClipboardEvent.h37 static PassRefPtrWillBeRawPtr<ClipboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> dataTransfer) argument
39 return adoptRefWillBeNoop(new ClipboardEvent(type, canBubble, cancelable, dataTransfer));
48 ClipboardEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> clipboardData);
H A DCustomEvent.cpp46 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> serializedDetail) argument
51 initEvent(type, canBubble, cancelable);
H A DRelatedEvent.cpp23 PassRefPtrWillBeRawPtr<RelatedEvent> RelatedEvent::create(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget) argument
25 return adoptRefWillBeNoop(new RelatedEvent(type, canBubble, cancelable, relatedTarget));
37 RelatedEvent::RelatedEvent(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget) argument
38 : Event(type, canBubble, cancelable)
H A DUIEventWithKeyState.h47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, argument
49 : UIEvent(type, canBubble, cancelable, view, detail)
H A DCompositionEvent.cpp65 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, const String& data) argument
70 initUIEvent(type, canBubble, cancelable, view, 0);
H A DFocusEvent.h50 static PassRefPtrWillBeRawPtr<FocusEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, EventTarget* relatedTarget) argument
52 return adoptRefWillBeNoop(new FocusEvent(type, canBubble, cancelable, view, detail, relatedTarget));
70 FocusEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, int, EventTarget*);
H A DHashChangeEvent.h53 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) argument
58 initEvent(eventType, canBubble, cancelable);
H A DMutationEvent.cpp33 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, argument
36 : Event(type, canBubble, cancelable)
49 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, argument
56 initEvent(type, canBubble, cancelable);
H A DUIEvent.h49 static PassRefPtrWillBeRawPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail) argument
51 return adoptRefWillBeNoop(new UIEvent(type, canBubble, cancelable, view, detail));
59 void initUIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, int detail);
82 UIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, int detail);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLContextEvent.cpp39 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
40 : Event(type, canBubble, cancelable)
H A DWebGLContextEvent.h47 static PassRefPtrWillBeRawPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
49 return adoptRefWillBeNoop(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
65 WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadEvent.cpp18 GamepadEvent::GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Gamepad* gamepad) argument
19 : Event(type, canBubble, cancelable)
H A DGamepadEvent.h26 static PassRefPtrWillBeRawPtr<GamepadEvent> create(const AtomicString& type, bool canBubble, bool cancelable, Gamepad* gamepad) argument
28 return adoptRefWillBeNoop(new GamepadEvent(type, canBubble, cancelable, gamepad));
44 GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Gamepad*);
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaStreamEvent.cpp40 PassRefPtrWillBeRawPtr<MediaStreamEvent> MediaStreamEvent::create(const AtomicString& type, bool canBubble, bool cancelable, MediaStream* stream) argument
42 return adoptRefWillBeNoop(new MediaStreamEvent(type, canBubble, cancelable, stream));
54 MediaStreamEvent::MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, MediaStream* stream) argument
55 : Event(type, canBubble, cancelable)
H A DMediaStreamTrackEvent.cpp37 PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> MediaStreamTrackEvent::create(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack* track) argument
39 return adoptRefWillBeNoop(new MediaStreamTrackEvent(type, canBubble, cancelable, track));
47 MediaStreamTrackEvent::MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack* track) argument
48 : Event(type, canBubble, cancelable)
H A DRTCDataChannelEvent.cpp35 PassRefPtrWillBeRawPtr<RTCDataChannelEvent> RTCDataChannelEvent::create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel* channel) argument
37 return adoptRefWillBeNoop(new RTCDataChannelEvent(type, canBubble, cancelable, channel));
45 RTCDataChannelEvent::RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel* channel) argument
46 : Event(type, canBubble, cancelable)
H A DRTCIceCandidateEvent.cpp37 PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> RTCIceCandidateEvent::create(bool canBubble, bool cancelable, RTCIceCandidate* candidate) argument
39 return adoptRefWillBeNoop(new RTCIceCandidateEvent(canBubble, cancelable, candidate));
46 RTCIceCandidateEvent::RTCIceCandidateEvent(bool canBubble, bool cancelable, RTCIceCandidate* candidate) argument
47 : Event(EventTypeNames::icecandidate, canBubble, 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);
/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/core/storage/
H A DStorageEvent.cpp80 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
85 initEvent(type, canBubble, cancelable);

Completed in 725 milliseconds

123