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

1 2

  /external/webkit/Source/WebCore/dom/
DeviceMotionEvent.cpp 48 void DeviceMotionEvent::initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData* deviceMotionData)
53 initEvent(type, bubbles, cancelable);
DeviceOrientationEvent.cpp 48 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientation* orientation)
53 initEvent(type, bubbles, cancelable);
DeviceOrientationEvent.idl 34 [Custom] void initDeviceOrientationEvent(in DOMString type, in boolean bubbles, in boolean cancelable, in double alpha, in double beta, in double gamma);
DeviceMotionEvent.h 47 void initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData*);
DeviceOrientationEvent.h 47 void initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientation*);
DeviceMotionEvent.idl 35 [Custom] void initDeviceMotionEvent(in DOMString type, in boolean bubbles, in boolean cancelable, in Acceleration acceleration, in Acceleration accelerationIncludingGravity, in RotationRate rotationRate, in double interval);
Event.idl 59 readonly attribute boolean bubbles;
  /external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/
create-event.js 8 shouldBeTrue("'bubbles' in event");
16 shouldBeTrue("typeof event.bubbles == 'boolean'");
  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
create-event.js 8 shouldBeTrue("'bubbles' in event");
15 shouldBeTrue("typeof event.bubbles == 'boolean'");
  /external/webkit/Source/WebCore/bindings/js/
JSDeviceOrientationEventCustom.cpp 65 bool bubbles = exec->argument(1).toBoolean(exec); local
77 imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
JSDeviceMotionEventCustom.cpp 167 bool bubbles = exec->argument(1).toBoolean(exec); local
188 imp->initDeviceMotionEvent(type, bubbles, cancelable, deviceMotionData.get());
  /external/webkit/Tools/QueueStatusServer/handlers/
statusbubble.py 55 bubbles = [self._build_bubble(queue, attachment) for queue in self._queues_to_display]
57 "bubbles": bubbles,
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/inherit/
proto_4.js 103 var bubbles = new SalesPerson();
147 "bubbles = new SalesPerson(); bubbles.specialty",
149 bubbles.specialty );
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DeviceOrientationEventCustom.cpp 74 bool bubbles = args[1]->BooleanValue(); local
85 imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
V8DeviceMotionEventCustom.cpp 170 bool bubbles = args[1]->BooleanValue(); local
178 imp->initDeviceMotionEvent(type, bubbles, cancelable, deviceMotionData.get());
  /external/webkit/Source/WebKit/chromium/src/
WebDOMEvent.cpp 93 bool WebDOMEvent::bubbles() const function in class:WebKit::WebDOMEvent
96 return m_private->bubbles();
  /external/webkit/Source/WebCore/storage/
IDBEventDispatcher.cpp 55 if (event->propagationStopped() || !event->bubbles() || event->cancelBubble())
  /external/webkit/Source/WebKit/win/
DOMEventsClasses.h 148 virtual HRESULT STDMETHODCALLTYPE bubbles(
228 virtual HRESULT STDMETHODCALLTYPE bubbles( function in class:DOMUIEvent
229 /* [retval][out] */ BOOL* result) { return DOMEvent::bubbles(result); }
337 virtual HRESULT STDMETHODCALLTYPE bubbles( function in class:DOMKeyboardEvent
338 /* [retval][out] */ BOOL* result) { return DOMEvent::bubbles(result); }
485 virtual HRESULT STDMETHODCALLTYPE bubbles( function in class:DOMMouseEvent
486 /* [retval][out] */ BOOL* result) { return DOMEvent::bubbles(result); }
660 virtual HRESULT STDMETHODCALLTYPE bubbles( function in class:DOMMutationEvent
661 /* [retval][out] */ BOOL* result) { return DOMEvent::bubbles(result); }
760 virtual HRESULT STDMETHODCALLTYPE bubbles( function in class:DOMOverflowEvent
844 virtual HRESULT STDMETHODCALLTYPE bubbles( function in class:DOMWheelEvent
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/tools/
externs.js 23 function(eventType, bubbles, cancellable, detail) {};
  /external/chromium/chrome/browser/resources/touch_ntp/tools/
externs.js 23 function(eventType, bubbles, cancellable, detail) {};
  /external/webkit/Source/WebKit/chromium/public/
WebDOMEvent.h 73 WEBKIT_API bool bubbles() const;
  /external/webkit/LayoutTests/dom/html/level2/events/
initEvent03.js 109 actualCanBubble = event.bubbles;
119 actualCanBubble = event.bubbles;
initEvent06.js 111 actualCanBubble = event.bubbles;
121 actualCanBubble = event.bubbles;
  /external/webkit/LayoutTests/dom/xhtml/level2/events/
initEvent03.js 109 actualCanBubble = event.bubbles;
119 actualCanBubble = event.bubbles;
initEvent06.js 111 actualCanBubble = event.bubbles;
121 actualCanBubble = event.bubbles;

Completed in 974 milliseconds

1 2