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

  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceOrientationData.cpp 27 #include "modules/device_orientation/DeviceOrientationData.h"
32 DeviceOrientationData* DeviceOrientationData::create()
34 return new DeviceOrientationData;
37 DeviceOrientationData* DeviceOrientationData::create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute, bool absolute)
39 return new DeviceOrientationData(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma, canProvideAbsolute, absolute);
42 DeviceOrientationData* DeviceOrientationData::create(const WebDeviceOrientationData& data)
44 return DeviceOrientationData::create(data.hasAlpha, data.alpha, data.hasBeta, data.beta, data.hasGamma, data.gamma, data.hasAbs (…)
    [all...]
DeviceOrientationData.h 35 class DeviceOrientationData FINAL : public GarbageCollected<DeviceOrientationData> {
37 static DeviceOrientationData* create();
38 static DeviceOrientationData* create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute = false, bool absolute = false);
39 static DeviceOrientationData* create(const WebDeviceOrientationData&);
54 DeviceOrientationData();
55 DeviceOrientationData(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute, bool absolute);
DeviceOrientationDispatcher.h 42 class DeviceOrientationData;
52 DeviceOrientationData* latestDeviceOrientationData();
65 Persistent<DeviceOrientationData> m_lastDeviceOrientationData;
DeviceOrientationEvent.h 34 class DeviceOrientationData;
44 static PassRefPtrWillBeRawPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientationData* orientation)
49 void initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData*);
51 DeviceOrientationData* orientation() const { return m_orientation.get(); }
64 DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData*);
66 PersistentWillBeMember<DeviceOrientationData> m_orientation;
DeviceOrientationController.h 13 class DeviceOrientationData;
27 void setOverride(DeviceOrientationData*);
45 DeviceOrientationData* lastData() const;
47 PersistentWillBeMember<DeviceOrientationData> m_overrideOrientationData;
DeviceOrientationDispatcher.cpp 35 #include "modules/device_orientation/DeviceOrientationData.h"
67 m_lastDeviceOrientationData = DeviceOrientationData::create(motion);
71 DeviceOrientationData* DeviceOrientationDispatcher::latestDeviceOrientationData()
DeviceOrientationEvent.cpp 29 #include "modules/device_orientation/DeviceOrientationData.h"
38 : m_orientation(DeviceOrientationData::create())
42 DeviceOrientationEvent::DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData* orientation)
48 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData* orientation)
DeviceOrientationController.cpp 10 #include "modules/device_orientation/DeviceOrientationData.h"
48 DeviceOrientationData* DeviceOrientationController::lastData() const
84 void DeviceOrientationController::setOverride(DeviceOrientationData* deviceOrientationData)
86 ASSERT(deviceOrientationData);
87 m_overrideOrientationData = deviceOrientationData;
DeviceOrientationInspectorAgent.cpp 14 #include "modules/device_orientation/DeviceOrientationData.h"
53 controller().setOverride(DeviceOrientationData::create(true, alpha, true, beta, true, gamma));
74 controller().setOverride(DeviceOrientationData::create(true, alpha, true, beta, true, gamma));
  /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
V8DeviceOrientationEventCustom.cpp 30 #include "modules/device_orientation/DeviceOrientationData.h"
51 DeviceOrientationData* orientation = DeviceOrientationData::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma, absoluteProvided, absolute);
  /external/chromium_org/third_party/WebKit/Source/modules/
modules.target.darwin-arm.mk 158 third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp \
    [all...]
modules.target.darwin-arm64.mk 158 third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp \
    [all...]
modules.target.darwin-mips.mk 158 third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp \
    [all...]
modules.target.darwin-mips64.mk 158 third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp \
    [all...]
modules.target.darwin-x86.mk 158 third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp \
    [all...]
modules.target.darwin-x86_64.mk 158 third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp \
    [all...]
modules.target.linux-arm.mk 158 third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp \
    [all...]
modules.target.linux-arm64.mk 158 third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp \
    [all...]
modules.target.linux-mips.mk 158 third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp \
    [all...]
modules.target.linux-mips64.mk 158 third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp \
    [all...]
modules.target.linux-x86.mk 158 third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp \
    [all...]
modules.target.linux-x86_64.mk 158 third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp \
    [all...]

Completed in 315 milliseconds