HomeSort by relevance Sort by last modified time
    Searched refs:DeviceMotionEvent (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebCore/dom/
DeviceMotionEvent.cpp 27 #include "DeviceMotionEvent.h"
33 DeviceMotionEvent::~DeviceMotionEvent()
37 DeviceMotionEvent::DeviceMotionEvent()
42 DeviceMotionEvent::DeviceMotionEvent(const AtomicString& eventType, DeviceMotionData* deviceMotionData)
48 void DeviceMotionEvent::initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData* deviceMotionData)
DeviceMotionEvent.h 35 class DeviceMotionEvent : public Event {
37 ~DeviceMotionEvent();
38 static PassRefPtr<DeviceMotionEvent> create()
40 return adoptRef(new DeviceMotionEvent);
42 static PassRefPtr<DeviceMotionEvent> create(const AtomicString& eventType, DeviceMotionData* deviceMotionData)
44 return adoptRef(new DeviceMotionEvent(eventType, deviceMotionData));
54 DeviceMotionEvent();
55 DeviceMotionEvent(const AtomicString& eventType, DeviceMotionData*);
DeviceMotionController.cpp 31 #include "DeviceMotionEvent.h"
55 RefPtr<DeviceMotionEvent> event = DeviceMotionEvent::create(eventNames().devicemotionEvent, deviceMotionData.get());
102 RefPtr<DeviceMotionEvent> event = DeviceMotionEvent::create(eventNames().devicemotionEvent, deviceMotionData);
DeviceMotionEvent.idl 30 ] DeviceMotionEvent : Event {
Document.cpp 51 #include "DeviceMotionEvent.h"
    [all...]
  /external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/
window-property.js 1 description("Tests that the window.DeviceMotionEvent and window.ondevicemotion properties are present.");
6 if (property == "DeviceMotionEvent")
12 shouldBeTrue("typeof window.DeviceMotionEvent == 'object'");
13 shouldBeFalse("typeof window.DeviceMotionEvent == 'function'");
15 shouldBeTrue("'DeviceMotionEvent' in window");
16 shouldBeTrue("window.hasOwnProperty('DeviceMotionEvent')");
create-event.js 3 var event = document.createEvent('DeviceMotionEvent');
optional-event-properties.js 1 description("Tests the optional properties of DeviceMotionEvent. Each property should be null if not set, or set to null or undefined.");
16 evalAndLog("event = document.createEvent('DeviceMotionEvent')");
  /external/webkit/Source/WebCore/bindings/js/
JSDeviceMotionEventCustom.cpp 32 #include "DeviceMotionEvent.h"
134 DeviceMotionEvent* imp = static_cast<DeviceMotionEvent*>(impl());
142 DeviceMotionEvent* imp = static_cast<DeviceMotionEvent*>(impl());
150 DeviceMotionEvent* imp = static_cast<DeviceMotionEvent*>(impl());
158 DeviceMotionEvent* imp = static_cast<DeviceMotionEvent*>(impl());
187 DeviceMotionEvent* imp = static_cast<DeviceMotionEvent*>(impl())
    [all...]
JSEventCustom.cpp 35 #include "DeviceMotionEvent.h"
188 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, DeviceMotionEvent, event);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DeviceMotionEventCustom.cpp 128 INC_STATS("DOM.DeviceMotionEvent.acceleration._get");
130 DeviceMotionEvent* imp = V8DeviceMotionEvent::toNative(holder);
138 INC_STATS("DOM.DeviceMotionEvent.accelerationIncludingGravity._get");
140 DeviceMotionEvent* imp = V8DeviceMotionEvent::toNative(holder);
148 INC_STATS("DOM.DeviceMotionEvent.rotationRate._get");
150 DeviceMotionEvent* imp = V8DeviceMotionEvent::toNative(holder);
158 INC_STATS("DOM.DeviceMotionEvent.interval._get");
160 DeviceMotionEvent* imp = V8DeviceMotionEvent::toNative(holder);
168 DeviceMotionEvent* imp = V8DeviceMotionEvent::toNative(args.Holder());
V8EventCustom.cpp 166 return toV8(static_cast<DeviceMotionEvent*>(impl));
  /external/webkit/Source/WebCore/page/
DOMWindow.idl 335 attribute [Conditional=DEVICE_ORIENTATION,EnabledAtRuntime] DeviceMotionEventConstructor DeviceMotionEvent;
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 131 dom/DeviceMotionEvent.cpp \
    [all...]

Completed in 98 milliseconds