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

1 2

  /external/webkit/Source/WebCore/dom/
DeviceOrientation.cpp 27 #include "DeviceOrientation.h"
31 PassRefPtr<DeviceOrientation> DeviceOrientation::create()
33 return adoptRef(new DeviceOrientation);
36 PassRefPtr<DeviceOrientation> DeviceOrientation::create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma)
38 return adoptRef(new DeviceOrientation(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma));
42 DeviceOrientation::DeviceOrientation()
49 DeviceOrientation::DeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canP (…)
    [all...]
DeviceOrientationClient.h 31 class DeviceOrientation;
41 virtual DeviceOrientation* lastOrientation() const = 0;
DeviceOrientation.h 34 class DeviceOrientation : public RefCounted<DeviceOrientation> {
36 static PassRefPtr<DeviceOrientation> create();
37 static PassRefPtr<DeviceOrientation> create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma);
47 DeviceOrientation();
48 DeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma);
DeviceOrientationEvent.h 33 class DeviceOrientation;
42 static PassRefPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientation* orientation)
47 void initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientation*);
51 DeviceOrientation* orientation() const { return m_orientation.get(); }
55 DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientation*);
57 RefPtr<DeviceOrientation> m_orientation;
DeviceOrientationEvent.cpp 29 #include "DeviceOrientation.h"
38 : m_orientation(DeviceOrientation::create())
42 DeviceOrientationEvent::DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientation* orientation)
48 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientation* orientation)
DeviceOrientationController.h 36 class DeviceOrientation;
49 void didChangeDeviceOrientation(DeviceOrientation*);
  /external/webkit/Source/WebKit/mac/WebView/
WebDeviceOrientationInternal.h 28 #import <WebCore/DeviceOrientation.h>
33 RefPtr<WebCore::DeviceOrientation> m_orientation;
36 - (id)initWithCoreDeviceOrientation:(PassRefPtr<WebCore::DeviceOrientation>)coreDeviceOrientation;
41 - (id)initWithCoreDeviceOrientation:(PassRefPtr<WebCore::DeviceOrientation>)coreDeviceOrientation;
45 WebCore::DeviceOrientation* core(WebDeviceOrientation*);
WebDeviceOrientation.mm 32 - (id)initWithCoreDeviceOrientation:(PassRefPtr<DeviceOrientation>)coreDeviceOrientation
45 - (id)initWithCoreDeviceOrientation:(PassRefPtr<WebCore::DeviceOrientation>)coreDeviceOrientation
58 DeviceOrientation* core(WebDeviceOrientation* orientation)
68 m_internal = [[WebDeviceOrientationInternal alloc] initWithCoreDeviceOrientation:DeviceOrientation::create(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma)];
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DeviceOrientationClientMockQt.h 30 class DeviceOrientation;
43 virtual DeviceOrientation* lastOrientation() const;
49 void mockOrientationChanged(DeviceOrientation*);
56 RefPtr<DeviceOrientation> m_orientation;
DeviceOrientationProviderQt.h 23 #include "DeviceOrientation.h"
45 DeviceOrientation* orientation() const { return m_orientation.get(); }
49 void deviceOrientationChanged(DeviceOrientation*);
52 void changeDeviceOrientation(DeviceOrientation*);
57 RefPtr<DeviceOrientation> m_orientation;
DeviceOrientationClientQt.cpp 35 connect(m_provider, SIGNAL(deviceOrientationChanged(DeviceOrientation*)), SLOT(changeDeviceOrientation(DeviceOrientation*)));
59 DeviceOrientation* DeviceOrientationClientQt::lastOrientation() const
69 void DeviceOrientationClientQt::changeDeviceOrientation(DeviceOrientation* orientation)
DeviceOrientationClientQt.h 23 #include "DeviceOrientation.h"
43 virtual DeviceOrientation* lastOrientation() const;
47 void changeDeviceOrientation(DeviceOrientation*);
DeviceOrientationProviderQt.cpp 30 m_orientation = DeviceOrientation::create();
64 m_orientation = DeviceOrientation::create(hasAlpha(), reading->z(),
72 void DeviceOrientationProviderQt::changeDeviceOrientation(DeviceOrientation* orientation)
79 connect(DeviceOrientationClientMockQt::client(), SIGNAL(mockOrientationChanged(DeviceOrientation*)), SLOT(changeDeviceOrientation(DeviceOrientation*)));
DeviceOrientationClientMockQt.cpp 23 #include "DeviceOrientation.h"
43 m_orientation = DeviceOrientation::create();
66 DeviceOrientation* DeviceOrientationClientMockQt::lastOrientation() const
78 m_orientation = DeviceOrientation::create(canProvideAlpha, alpha,
  /external/webkit/Source/WebCore/platform/mock/
DeviceOrientationClientMock.h 29 #include "DeviceOrientation.h"
51 virtual DeviceOrientation* lastOrientation() const { return m_orientation.get(); }
54 void setOrientation(PassRefPtr<DeviceOrientation>);
59 RefPtr<DeviceOrientation> m_orientation;
DeviceOrientationClientMock.cpp 58 void DeviceOrientationClientMock::setOrientation(PassRefPtr<DeviceOrientation> orientation)
  /external/webkit/Source/WebKit/android/jni/
DeviceOrientationClientImpl.h 29 #include <DeviceOrientation.h>
47 void onOrientationChange(PassRefPtr<DeviceOrientation>);
54 virtual DeviceOrientation* lastOrientation() const { return m_lastOrientation.get(); }
65 RefPtr<DeviceOrientation> m_lastOrientation;
DeviceMotionAndOrientationManager.h 31 #include <DeviceOrientation.h>
42 // DeviceOrientation may be either the real implementations or mocks. It also
52 void setMockOrientation(PassRefPtr<WebCore::DeviceOrientation>);
53 void onOrientationChange(PassRefPtr<WebCore::DeviceOrientation>);
DeviceMotionAndOrientationManager.cpp 65 void DeviceMotionAndOrientationManager::setMockOrientation(PassRefPtr<DeviceOrientation> orientation)
71 void DeviceMotionAndOrientationManager::onOrientationChange(PassRefPtr<DeviceOrientation> orientation)
143 RefPtr<DeviceOrientation> orientation = DeviceOrientation::create(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma);
149 RefPtr<DeviceOrientation> orientation = DeviceOrientation::create(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma);
  /external/webkit/Source/WebKit/chromium/src/
DeviceOrientationClientProxy.h 29 #include "DeviceOrientation.h"
50 WebCore::DeviceOrientation* lastOrientation() const;
55 mutable RefPtr<WebCore::DeviceOrientation> m_lastOrientation;
WebDeviceOrientation.cpp 29 #include "DeviceOrientation.h"
34 WebDeviceOrientation::WebDeviceOrientation(const PassRefPtr<WebCore::DeviceOrientation>& orientation)
56 WebDeviceOrientation& WebDeviceOrientation::operator=(const PassRefPtr<WebCore::DeviceOrientation>& orientation)
79 WebDeviceOrientation::operator PassRefPtr<WebCore::DeviceOrientation>() const
83 return WebCore::DeviceOrientation::create(m_canProvideAlpha, m_alpha, m_canProvideBeta, m_beta, m_canProvideGamma, m_gamma);
WebDeviceOrientationController.cpp 29 #include "DeviceOrientation.h"
38 PassRefPtr<WebCore::DeviceOrientation> deviceOrientation(orientation);
39 m_controller->didChangeDeviceOrientation(deviceOrientation.get());
  /external/webkit/Source/WebKit/chromium/public/
WebDeviceOrientation.h 31 namespace WebCore { class DeviceOrientation; }
60 WebDeviceOrientation(const WTF::PassRefPtr<WebCore::DeviceOrientation>&);
61 WebDeviceOrientation& operator=(const WTF::PassRefPtr<WebCore::DeviceOrientation>&);
62 operator WTF::PassRefPtr<WebCore::DeviceOrientation>() const;
  /external/webkit/Source/WebKit/android/WebCoreSupport/
DeviceOrientationClientAndroid.h 51 virtual WebCore::DeviceOrientation* lastOrientation() const;
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebDeviceOrientationClient.h 49 virtual WebCore::DeviceOrientation* lastOrientation() const;

Completed in 2777 milliseconds

1 2