Searched refs:cancelable (Results 26 - 50 of 116) sorted by relevance

12345

/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/third_party/WebKit/Source/core/events/
H A DTouchEvent.h47 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable)
50 ctrlKey, altKey, shiftKey, metaKey, cancelable));
80 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable);
44 create(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 DKeyboardEvent.h72 static PassRefPtrWillBeRawPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
76 return adoptRefWillBeNoop(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, location,
82 void initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
109 KeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
H A DHashChangeEvent.h54 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) argument
59 initEvent(eventType, canBubble, cancelable);
H A DMutationEvent.h54 void initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode,
70 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode,
H A DUIEvent.idl28 [Default=Undefined] optional boolean cancelable,
H A DKeyboardEvent.cpp119 : UIEventWithKeyState(eventType, initializer.bubbles, initializer.cancelable, initializer.view, initializer.detail, initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey)
128 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, argument
131 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
144 void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
151 initUIEvent(type, canBubble, cancelable, view, 0);
H A DFocusEvent.h49 static PassRefPtrWillBeRawPtr<FocusEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, EventTarget* relatedTarget) argument
51 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 DCustomEvent.h51 void initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue>);
H A DEvent.h46 bool cancelable; member in struct:WebCore::EventInit
83 // cancelable.
109 void initEvent(const AtomicString& type, bool canBubble, bool cancelable);
124 bool cancelable() const { return m_cancelable; } function in class:WebCore::Event
188 Event(const AtomicString& type, bool canBubble, bool cancelable);
H A DCompositionEvent.cpp68 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, const String& data) argument
73 initUIEvent(type, canBubble, cancelable, view, 0);
H A DMouseEvent.cpp68 PassRefPtrWillBeRawPtr<MouseEvent> MouseEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, argument
74 return adoptRefWillBeNoop(new MouseEvent(type, canBubble, cancelable, view,
87 MouseEvent::MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, argument
93 : MouseRelatedEvent(eventType, canBubble, cancelable, view, detail, IntPoint(screenX, screenY),
106 : MouseRelatedEvent(eventType, initializer.bubbles, initializer.cancelable, initializer.view, initializer.detail, IntPoint(initializer.screenX, initializer.screenY),
123 void MouseEvent::initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, argument
131 initUIEvent(type, canBubble, cancelable, view, detail);
277 doubleClickEvent->initMouseEvent(EventTypeNames::dblclick, event()->bubbles(), event()->cancelable(), event()->view(),
H A DMutationEvent.idl36 [Default=Undefined] optional boolean cancelable,
H A DTextEvent.cpp94 void TextEvent::initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, const String& data) argument
99 initUIEvent(type, canBubble, cancelable, view, 0);
H A DMouseEvent.h58 static PassRefPtrWillBeRawPtr<MouseEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>,
70 void initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>,
97 MouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>,
H A DFocusEvent.cpp54 FocusEvent::FocusEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, EventTarget* relatedTarget) argument
55 : UIEvent(type, canBubble, cancelable, view, detail)
/external/chromium_org/chrome/test/chromedriver/js/
H A Ddispatch_context_menu_event.js28 cancelable: true,
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDOMMessageEvent.h50 BLINK_EXPORT void initMessageEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData, const WebString& origin, const WebFrame* sourceFrame, const WebString& lastEventId, const WebMessagePortChannelArray& channels = WebMessagePortChannelArray());
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceMotionEvent.cpp46 : Event(eventType, false, false) // Can't bubble, not cancelable
52 void DeviceMotionEvent::initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData* deviceMotionData) argument
57 initEvent(type, bubbles, cancelable);
H A DDeviceMotionEvent.idl33 [Default=Undefined] optional boolean cancelable,
H A DDeviceOrientationEvent.cpp44 : Event(eventType, false, false) // Can't bubble, not cancelable
50 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData* orientation) argument
55 initEvent(type, bubbles, cancelable);
H A DDeviceOrientationEvent.idl33 [Default=Undefined] optional boolean cancelable,
H A DDeviceOrientationEvent.h48 void initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData*);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMMessageEvent.cpp48 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
58 unwrap<MessageEvent>()->initMessageEvent(type, canBubble, cancelable, messageData, origin, lastEventId, window, ports.release());
/external/chromium_org/third_party/WebKit/Source/core/storage/
H A DStorageEvent.cpp83 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
88 initEvent(type, canBubble, cancelable);

Completed in 323 milliseconds

12345