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

1 2 3 4

  /external/webkit/WebCore/dom/
MutationEvent.cpp 33 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
36 : Event(type, canBubble, cancelable)
45 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
52 initEvent(type, canBubble, cancelable);
UIEvent.h 40 static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail)
42 return adoptRef(new UIEvent(type, canBubble, cancelable, view, detail));
46 void initUIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);
66 UIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);
MessageEvent.cpp 55 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray> ports)
60 initEvent(type, canBubble, cancelable);
78 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, MessagePort* port)
85 initMessageEvent(type, canBubble, cancelable, data, origin, lastEventId, source, ports);
ClipboardEvent.cpp 32 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<Clipboard> clipboard)
33 : Event(eventType, canBubble, cancelable), m_clipboard(clipboard)
KeyboardEvent.h 62 static PassRefPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view,
66 return adoptRef(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, keyLocation,
71 void initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
98 KeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
MouseEvent.cpp 36 MouseEvent::MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view,
41 : MouseRelatedEvent(eventType, canBubble, cancelable, view, detail, screenX, screenY,
54 void MouseEvent::initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view,
62 initUIEvent(type, canBubble, cancelable, view, detail);
MouseEvent.h 39 static PassRefPtr<MouseEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view,
44 return adoptRef(new MouseEvent(type, canBubble, cancelable, view, detail, screenX, screenY, pageX, pageY,
49 void initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>,
73 MouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>,
BeforeLoadEvent.h 44 void initBeforeLoadEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& url)
49 initEvent(type, canBubble, cancelable);
CompositionEvent.cpp 48 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data)
53 initUIEvent(type, canBubble, cancelable, view, 0);
ErrorEvent.cpp 57 void ErrorEvent::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber)
62 initEvent(type, canBubble, cancelable);
KeyboardEvent.idl 49 in boolean cancelable,
66 in boolean cancelable,
PopStateEvent.cpp 40 void PopStateEvent::initPopStateEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> stateObject)
45 initEvent(type, canBubble, cancelable);
TextEvent.cpp 52 void TextEvent::initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data)
57 initUIEvent(type, canBubble, cancelable, view, 0);
UIEventWithKeyState.h 47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view,
49 : UIEvent(type, canBubble, cancelable, view, detail)
Event.h 69 static PassRefPtr<Event> create(const AtomicString& type, bool canBubble, bool cancelable)
71 return adoptRef(new Event(type, canBubble, cancelable));
75 void initEvent(const AtomicString& type, bool canBubble, bool cancelable);
89 bool cancelable() const { return m_cancelable; } function in class:WebCore::Event
159 Event(const AtomicString& type, bool canBubble, bool cancelable);
MessageEvent.h 52 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray>);
63 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, MessagePort*);
MutationEvent.h 51 void initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
65 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
BeforeLoadEvent.idl 32 in boolean cancelable,
  /packages/apps/Gallery3D/src/com/cooliris/media/
Cancelable.java 24 public interface Cancelable<T> {
26 * Requests this <code>Cancelable</code> to be canceled. This function will
42 * Gets the results of this <code>Cancelable</code> task.
BaseCancelable.java 23 * An abstract class for the interface <code>Cancelable</code>. Subclass can
25 * implementation of <code>Cancelable</code>.
27 public abstract class BaseCancelable<T> implements Cancelable<T> {
52 private Cancelable<?> mCurrentTask;
  /external/webkit/WebCore/manual-tests/
DOMContextMenuEvent.html 14 "cancelable = "+event.cancelable+"<br>" +
  /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...]
  /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...]
  /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/WebCore/storage/
StorageEvent.cpp 59 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea)
64 initEvent(type, canBubble, cancelable);

Completed in 1209 milliseconds

1 2 3 4