Searched refs:cancelable (Results 1 - 25 of 116) sorted by relevance

12345

/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/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());
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaStreamTrackEvent.cpp37 PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> MediaStreamTrackEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<MediaStreamTrack> track) argument
39 return adoptRefWillBeNoop(new MediaStreamTrackEvent(type, canBubble, cancelable, track));
48 MediaStreamTrackEvent::MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<MediaStreamTrack> track) argument
49 : Event(type, canBubble, cancelable)
H A DRTCDataChannelEvent.cpp35 PassRefPtrWillBeRawPtr<RTCDataChannelEvent> RTCDataChannelEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCDataChannel> channel) argument
37 return adoptRefWillBeNoop(new RTCDataChannelEvent(type, canBubble, cancelable, channel));
46 RTCDataChannelEvent::RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCDataChannel> channel) argument
47 : Event(type, canBubble, cancelable)
H A DRTCIceCandidateEvent.cpp38 PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> RTCIceCandidateEvent::create(bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCIceCandidate> candidate) argument
40 return adoptRefWillBeNoop(new RTCIceCandidateEvent(canBubble, cancelable, candidate));
48 RTCIceCandidateEvent::RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCIceCandidate> candidate) argument
49 : Event(EventTypeNames::icecandidate, canBubble, cancelable)
H A DMediaStreamTrackEvent.h40 static PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<MediaStreamTrack>);
51 MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<MediaStreamTrack>);
H A DRTCDataChannelEvent.h39 static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCDataChannel>);
49 RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCDataChannel>);
H A DRTCIceCandidateEvent.h39 static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create(bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCIceCandidate>);
49 RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCIceCandidate>);
H A DMediaStreamEvent.cpp40 PassRefPtrWillBeRawPtr<MediaStreamEvent> MediaStreamEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream> stream) argument
42 return adoptRefWillBeNoop(new MediaStreamEvent(type, canBubble, cancelable, stream));
55 MediaStreamEvent::MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream> stream) argument
56 : Event(type, canBubble, cancelable)
H A DMediaStreamEvent.h45 static PassRefPtrWillBeRawPtr<MediaStreamEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream>);
57 MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream>);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDOMCustomEvent.h43 BLINK_EXPORT void initCustomEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData);
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DClipboardEvent.cpp34 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Clipboard> clipboard) argument
35 : Event(eventType, canBubble, cancelable), m_clipboard(clipboard)
H A DTouchEvent.cpp45 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable)
46 : UIEventWithKeyState(type, true, cancelable, view, 0,
68 bool cancelable = true;
70 cancelable = false;
72 initUIEvent(type, true, cancelable, view, 0);
100 if (!cancelable() && view() && view()->frame()) {
102 "Ignored attempt to cancel a " + type() + " event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.");
42 TouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable) argument
H A DCustomEvent.cpp48 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> serializedDetail) argument
53 initEvent(type, canBubble, cancelable);
H A DMutationEvent.cpp34 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, argument
37 : Event(type, canBubble, cancelable)
51 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, argument
58 initEvent(type, canBubble, cancelable);
H A DUIEvent.h48 static PassRefPtrWillBeRawPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail) argument
50 return adoptRefWillBeNoop(new UIEvent(type, canBubble, cancelable, view, detail));
58 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);
H A DHashChangeEvent.idl26 [Default=Undefined] optional boolean cancelable,
H A DUIEventWithKeyState.h47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, argument
49 : UIEvent(type, canBubble, cancelable, view, detail)
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLContextEvent.h45 static PassRefPtrWillBeRawPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
47 return adoptRefWillBeNoop(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
63 WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
H A DWebGLContextEvent.cpp40 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
41 : Event(type, canBubble, cancelable)
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadEvent.h25 static PassRefPtrWillBeRawPtr<GamepadEvent> create(const AtomicString& type, bool canBubble, bool cancelable, Gamepad* gamepad) argument
27 return adoptRefWillBeNoop(new GamepadEvent(type, canBubble, cancelable, gamepad));
43 GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Gamepad*);
H A DGamepadEvent.cpp19 GamepadEvent::GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Gamepad* gamepad) argument
20 : Event(type, canBubble, cancelable)
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPlatformTouchEvent.h39 bool cancelable() const { return m_cancelable; } function in class:WebCore::PlatformTouchEvent
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
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/bindings/v8/custom/
H A DV8DeviceOrientationEventCustom.cpp40 bool cancelable = info[2]->BooleanValue(); local
52 impl->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());

Completed in 375 milliseconds

12345