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

1 2 3 4 5 6 7

  /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/modules/mediastream/
RTCIceCandidateEvent.cpp 39 PassRefPtr<RTCIceCandidateEvent> RTCIceCandidateEvent::create(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate> candidate)
41 return adoptRef(new RTCIceCandidateEvent(canBubble, cancelable, candidate));
49 RTCIceCandidateEvent::RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate> candidate)
50 : Event(eventNames().icecandidateEvent, canBubble, cancelable)
RTCIceCandidateEvent.h 39 static PassRefPtr<RTCIceCandidateEvent> create(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate>);
47 RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate>);
MediaStreamTrackEvent.cpp 38 PassRefPtr<MediaStreamTrackEvent> MediaStreamTrackEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStreamTrack> track)
40 return adoptRef(new MediaStreamTrackEvent(type, canBubble, cancelable, track));
49 MediaStreamTrackEvent::MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStreamTrack> track)
50 : Event(type, canBubble, cancelable)
RTCDataChannelEvent.cpp 38 PassRefPtr<RTCDataChannelEvent> RTCDataChannelEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel> channel)
40 return adoptRef(new RTCDataChannelEvent(type, canBubble, cancelable, channel));
49 RTCDataChannelEvent::RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel> channel)
50 : Event(type, canBubble, cancelable)
MediaStreamTrackEvent.h 40 static PassRefPtr<MediaStreamTrackEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStreamTrack>);
49 MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStreamTrack>);
RTCDataChannelEvent.h 39 static PassRefPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel>);
47 RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel>);
MediaStreamEvent.h 45 static PassRefPtr<MediaStreamEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream>);
54 MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream>);
MediaStreamEvent.cpp 43 PassRefPtr<MediaStreamEvent> MediaStreamEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream> stream)
45 return adoptRef(new MediaStreamEvent(type, canBubble, cancelable, stream));
58 MediaStreamEvent::MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream> stream)
59 : Event(type, canBubble, cancelable)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ClipboardEvent.cpp 35 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<Clipboard> clipboard)
36 : Event(eventType, canBubble, cancelable), m_clipboard(clipboard)
MutationEvent.cpp 36 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
39 : Event(type, canBubble, cancelable)
53 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
60 initEvent(type, canBubble, cancelable);
CustomEvent.cpp 49 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> serializedDetail)
54 initEvent(type, canBubble, cancelable);
UIEventWithKeyState.h 47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view,
49 : UIEvent(type, canBubble, cancelable, view, detail)
UIEvent.h 48 static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail)
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);
Event.h 44 bool cancelable; member in struct:WebCore::EventInit
79 static PassRefPtr<Event> create(const AtomicString& type, bool canBubble, bool cancelable)
81 return adoptRef(new Event(type, canBubble, cancelable));
91 void initEvent(const AtomicString& type, bool canBubble, bool cancelable);
106 bool cancelable() const { return m_cancelable; } function in class:WebCore::Event
169 Event(const AtomicString& type, bool canBubble, bool cancelable);
CompositionEvent.cpp 61 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data)
66 initUIEvent(type, canBubble, cancelable, view, 0);
HashChangeEvent.idl 26 [Default=Undefined] optional boolean cancelable,
  /external/chromium_org/third_party/WebKit/Source/web/
WebDOMCustomEvent.cpp 43 void WebDOMCustomEvent::initCustomEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& webSerializedScriptValue)
48 unwrap<CustomEvent>()->initCustomEvent(type, canBubble, cancelable, serializedScriptValue.get());
WebDOMMessageEvent.cpp 49 void WebDOMMessageEvent::initMessageEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData, const WebString& origin, const WebFrame* sourceFrame, const WebString& lastEventId)
57 unwrap<MessageEvent>()->initMessageEvent(type, canBubble, cancelable, messageData, origin, lastEventId, window, ports.release());
  /external/chromium_org/third_party/WebKit/public/web/
WebDOMCustomEvent.h 44 WEBKIT_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 45 static PassRefPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
47 return adoptRef(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
61 WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
WebGLContextEvent.cpp 42 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
43 : 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);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8DeviceOrientationEventCustom.cpp 41 bool cancelable = args[2]->BooleanValue(); local
53 imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceOrientationEvent.cpp 45 : Event(eventType, false, false) // Can't bubble, not cancelable
51 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData* orientation)
56 initEvent(type, bubbles, cancelable);

Completed in 796 milliseconds

1 2 3 4 5 6 7