HomeSort by relevance Sort by last modified time
    Searched refs:cancelable (Results 26 - 50 of 63) sorted by null

12 3

  /external/webkit/WebCore/dom/
MouseRelatedEvent.h 58 MouseRelatedEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>,
TextEvent.h 46 void initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, const String& data);
Event.idl 60 readonly attribute boolean cancelable;
MouseEvent.idl 37 in boolean cancelable,
MouseRelatedEvent.cpp 76 MouseRelatedEvent::MouseRelatedEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<AbstractView> viewArg,
79 : UIEventWithKeyState(eventType, canBubble, cancelable, viewArg, detail, ctrlKey, altKey, shiftKey, metaKey)
Node.cpp 2811 bool cancelable = eventType == eventNames().DOMActivateEvent; local
2913 bool cancelable = eventType != eventNames().mousemoveEvent; local
    [all...]
  /external/webkit/WebKit/win/
DOMEventsClasses.h 151 virtual HRESULT STDMETHODCALLTYPE cancelable(
231 virtual HRESULT STDMETHODCALLTYPE cancelable( function in class:DOMUIEvent
232 /* [retval][out] */ BOOL* result) { return DOMEvent::cancelable(result); }
256 /* [in] */ BOOL cancelable,
340 virtual HRESULT STDMETHODCALLTYPE cancelable( function in class:DOMKeyboardEvent
341 /* [retval][out] */ BOOL* result) { return DOMEvent::cancelable(result); }
365 /* [in] */ BOOL cancelable,
367 /* [in] */ long detail) { return DOMUIEvent::initUIEvent(type, canBubble, cancelable, view, detail); }
419 /* [in] */ BOOL cancelable,
488 virtual HRESULT STDMETHODCALLTYPE cancelable( function in class:DOMMouseEvent
663 virtual HRESULT STDMETHODCALLTYPE cancelable( function in class:DOMMutationEvent
763 virtual HRESULT STDMETHODCALLTYPE cancelable( function in class:DOMOverflowEvent
847 virtual HRESULT STDMETHODCALLTYPE cancelable( function in class:DOMWheelEvent
    [all...]
DOMEventsClasses.cpp 151 HRESULT STDMETHODCALLTYPE DOMEvent::cancelable( function in class:DOMEvent
210 /* [in] */ BOOL /*cancelable*/,
355 /* [in] */ BOOL /*cancelable*/,
469 /* [in] */ BOOL /*cancelable*/,
569 /* [in] */ BOOL /*cancelable*/,
  /external/webkit/WebKit/chromium/src/
WebEvent.cpp 99 bool WebEvent::cancelable() const function in class:WebKit::WebEvent
102 return m_private->cancelable();
  /external/webkit/WebCore/storage/
StorageEvent.h 49 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
  /external/webkit/WebKit/chromium/public/
WebEvent.h 72 WEBKIT_API bool cancelable() const;
  /frameworks/base/core/java/android/app/
ProgressDialog.java 39 * <p>The dialog can be made cancelable on back key press.</p>
94 CharSequence message, boolean indeterminate, boolean cancelable) {
95 return show(context, title, message, indeterminate, cancelable, null);
100 boolean cancelable, OnCancelListener cancelListener) {
105 dialog.setCancelable(cancelable);
AlertDialog.java 67 protected AlertDialog(Context context, boolean cancelable, OnCancelListener cancelListener) {
69 setCancelable(cancelable);
431 * Sets whether the dialog is cancelable or not default is true.
435 public Builder setCancelable(boolean cancelable) {
436 P.mCancelable = cancelable;
    [all...]
Dialog.java 156 protected Dialog(Context context, boolean cancelable,
159 mCancelable = cancelable;
163 protected Dialog(Context context, boolean cancelable,
166 mCancelable = cancelable;
537 * it is cancelable), but you can override this to do whatever you want.
918 * Sets whether this dialog is cancelable with the
927 * bounds. If setting to true, the dialog is set to be cancelable if not
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/wizards/newproject/
StubProjectWizard.java 109 public void run(boolean fork, boolean cancelable,
  /cts/tests/tests/content/src/android/content/cts/
AsyncQueryHandlerTest.java 67 private static final boolean CANCELABLE = true;
158 startInsert(INSERT_TOKEN_2, INSERT_COOKIE, DummyProvider.CONTENT_URI, values2, CANCELABLE);
231 PROJECTIONS, null, null, ORDER_BY, CANCELABLE);
281 DummyProvider.NAME + "=?", new String[] { NAME1 }, CANCELABLE);
344 DummyProvider.NAME + "=?", new String[] { NAME1 }, CANCELABLE);
386 String selection, String[] selectionArgs, String orderBy, boolean cancelable) {
387 if (cancelable) {
395 ContentValues initialValues, boolean cancelable) {
396 if (cancelable) {
403 String selection, String[] selectionArgs, boolean cancelable) {
    [all...]
  /external/webkit/WebKit/win/Interfaces/
DOMEvents.idl 105 //readonly attribute boolean cancelable;
106 HRESULT cancelable([out, retval] BOOL* result);
199 // in boolean cancelable,
208 HRESULT initKeyboardEvent([in] BSTR type, [in] BOOL canBubble, [in] BOOL cancelable, [in] IDOMWindow* view, [in] BSTR keyIdentifier, [in] unsigned long keyLocation, [in] BOOL ctrlKey, [in] BOOL altKey, [in] BOOL shiftKey, [in] BOOL metaKey, [in] BOOL graphKey);
219 // in boolean cancelable,
269 // in boolean cancelable,
282 HRESULT initMouseEvent([in] BSTR type, [in] BOOL canBubble, [in] BOOL cancelable, [in] IDOMWindow* view, [in] long detail, [in] long screenX, [in] long screenY, [in] long clientX, [in] long clientY, [in] BOOL ctrlKey, [in] BOOL altKey, [in] BOOL shiftKey, [in] BOOL metaKey, [in] unsigned short button, [in] IDOMEventTarget* relatedTarget);
334 // in boolean cancelable,
340 HRESULT initMutationEvent([in] BSTR type, [in] BOOL canBubble, [in] BOOL cancelable, [in] IDOMNode* relatedNode, [in] BSTR prevValue, [in] BSTR newValue, [in] BSTR attrName, [in] unsigned short attrChange);
381 // in boolean cancelable,
    [all...]
  /cts/tests/src/android/app/cts/
DialogStubActivity.java 227 private AlertDialog getAlertDialogCancelablInstance(boolean cancelable) {
233 return new MockAlertDialog(this, cancelable, cancelListener);
362 public MockAlertDialog(Context context, boolean cancelable, OnCancelListener cancelListener) {
363 super(context, cancelable, cancelListener);
TestDialog.java 93 public TestDialog(Context context, boolean cancelable, OnCancelListener cancelListener) {
94 super(context, cancelable, cancelListener);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
EventSendingController.mm 610 printf(" cancelable: %d\n", [event cancelable] ? 1 : 0);
701 cancelable:YES
716 cancelable:YES
731 cancelable:YES
  /external/webkit/WebCore/bindings/objc/
PublicDOMInterfaces.h 1046 @property(readonly) BOOL cancelable; variable
    [all...]
  /external/webkit/WebCore/page/
EventHandler.h 275 bool dispatchMouseEvent(const AtomicString& eventType, Node* target, bool cancelable, int clickCount, const PlatformMouseEvent&, bool setUnder);
  /cts/tests/tests/app/src/android/app/cts/
AlertDialog_BuilderTest.java 399 private void setCancelable(final boolean cancelable) throws Throwable {
403 mBuilder.setCancelable(cancelable);
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java     [all...]
  /external/webkit/SunSpider/tests/parse-only/
jquery-1.3.2.js     [all...]

Completed in 416 milliseconds

12 3