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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/base/
cancelable_callback_unittest.cc 32 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/
WebDOMCustomEvent.cpp 41 void WebDOMCustomEvent::initCustomEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& webSerializedScriptValue)
46 unwrap<CustomEvent>()->initCustomEvent(type, canBubble, cancelable, serializedScriptValue.get());
  /external/chromium_org/third_party/WebKit/Source/core/events/
ClipboardEvent.h 37 static PassRefPtrWillBeRawPtr<ClipboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> dataTransfer)
39 return adoptRefWillBeNoop(new ClipboardEvent(type, canBubble, cancelable, dataTransfer));
48 ClipboardEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> clipboardData);
RelatedEvent.cpp 23 PassRefPtrWillBeRawPtr<RelatedEvent> RelatedEvent::create(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget)
25 return adoptRefWillBeNoop(new RelatedEvent(type, canBubble, cancelable, relatedTarget));
37 RelatedEvent::RelatedEvent(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget)
38 : Event(type, canBubble, cancelable)
ClipboardEvent.cpp 34 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> clipboardData)
35 : Event(eventType, canBubble, cancelable), m_clipboardData(clipboardData)
TouchEvent.cpp 45 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable)
46 : UIEventWithKeyState(type, true, cancelable, view, 0,
67 bool cancelable = true;
69 cancelable = false;
71 initUIEvent(type, true, cancelable, view, 0);
99 if (!cancelable() && view() && view()->frame()) {
101 "Ignored attempt to cancel a " + type() + " event with cancelable=false, for example because scrolling is in progress and cannot be interrupted."));
CustomEvent.cpp 46 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> serializedDetail)
51 initEvent(type, canBubble, cancelable);
UIEventWithKeyState.h 47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view,
49 : UIEvent(type, canBubble, cancelable, view, detail)
MutationEvent.cpp 33 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode,
36 : Event(type, canBubble, cancelable)
49 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode,
56 initEvent(type, canBubble, cancelable);
UIEvent.h 49 static PassRefPtrWillBeRawPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail)
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/modules/mediastream/
MediaStreamTrackEvent.cpp 37 PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> MediaStreamTrackEvent::create(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack* track)
39 return adoptRefWillBeNoop(new MediaStreamTrackEvent(type, canBubble, cancelable, track));
47 MediaStreamTrackEvent::MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack* track)
48 : Event(type, canBubble, cancelable)
RTCDataChannelEvent.cpp 35 PassRefPtrWillBeRawPtr<RTCDataChannelEvent> RTCDataChannelEvent::create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel* channel)
37 return adoptRefWillBeNoop(new RTCDataChannelEvent(type, canBubble, cancelable, channel));
45 RTCDataChannelEvent::RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel* channel)
46 : Event(type, canBubble, cancelable)
RTCIceCandidateEvent.cpp 37 PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> RTCIceCandidateEvent::create(bool canBubble, bool cancelable, RTCIceCandidate* candidate)
39 return adoptRefWillBeNoop(new RTCIceCandidateEvent(canBubble, cancelable, candidate));
46 RTCIceCandidateEvent::RTCIceCandidateEvent(bool canBubble, bool cancelable, RTCIceCandidate* candidate)
47 : Event(EventTypeNames::icecandidate, canBubble, cancelable)
MediaStreamTrackEvent.h 41 static PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> create(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack*);
52 MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack*);
RTCDataChannelEvent.h 40 static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
50 RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
RTCIceCandidateEvent.h 40 static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create(bool canBubble, bool cancelable, RTCIceCandidate*);
50 RTCIceCandidateEvent(bool canBubble, bool cancelable, RTCIceCandidate*);
MediaStreamEvent.h 46 static PassRefPtrWillBeRawPtr<MediaStreamEvent> create(const AtomicString& type, bool canBubble, bool cancelable, MediaStream*);
58 MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, MediaStream*);
MediaStreamEvent.cpp 40 PassRefPtrWillBeRawPtr<MediaStreamEvent> MediaStreamEvent::create(const AtomicString& type, bool canBubble, bool cancelable, MediaStream* stream)
42 return adoptRefWillBeNoop(new MediaStreamEvent(type, canBubble, cancelable, stream));
54 MediaStreamEvent::MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, MediaStream* stream)
55 : Event(type, canBubble, cancelable)
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformTouchEvent.h 39 bool cancelable() const { return m_cancelable; } function in class:blink::PlatformTouchEvent
  /external/chromium_org/third_party/WebKit/public/web/
WebDOMCustomEvent.h 43 BLINK_EXPORT void initCustomEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextEvent.h 47 static PassRefPtrWillBeRawPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
49 return adoptRefWillBeNoop(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
65 WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
WebGLContextEvent.cpp 39 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
40 : Event(type, canBubble, cancelable)
  /external/chromium_org/third_party/WebKit/Source/modules/gamepad/
GamepadEvent.h 26 static PassRefPtrWillBeRawPtr<GamepadEvent> create(const AtomicString& type, bool canBubble, bool cancelable, Gamepad* gamepad)
28 return adoptRefWillBeNoop(new GamepadEvent(type, canBubble, cancelable, gamepad));
44 GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Gamepad*);
GamepadEvent.cpp 18 GamepadEvent::GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Gamepad* gamepad)
19 : Event(type, canBubble, cancelable)
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowDialogFragment.java 24 private boolean cancelable = true; // defaults to true field in class:ShadowDialogFragment
50 dialog.setCancelable(cancelable);
81 return cancelable;
85 public void setCancelable(boolean cancelable) {
86 this.cancelable = cancelable;
88 dialog.setCancelable(cancelable);

Completed in 247 milliseconds

1 2 3 4 5 6 7 8 9