OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:currentDeviceMotion
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebCore/dom/
DeviceMotionClient.h
40
virtual DeviceMotionData*
currentDeviceMotion
() const = 0;
DeviceMotionController.cpp
51
ASSERT(!m_client || m_client->
currentDeviceMotion
());
54
RefPtr<DeviceMotionData> deviceMotionData = m_client ? m_client->
currentDeviceMotion
() : DeviceMotionData::create();
68
if (!m_client || m_client->
currentDeviceMotion
()) {
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DeviceMotionClientQt.cpp
60
DeviceMotionData* DeviceMotionClientQt::
currentDeviceMotion
() const
62
return m_provider->
currentDeviceMotion
();
75
m_controller->didChangeDeviceMotion(
currentDeviceMotion
());
DeviceMotionClientQt.h
43
virtual DeviceMotionData*
currentDeviceMotion
() const;
DeviceMotionProviderQt.h
44
DeviceMotionData*
currentDeviceMotion
() const { return m_motion.get(); }
/external/webkit/Source/WebKit/android/WebCoreSupport/
DeviceMotionClientAndroid.cpp
65
DeviceMotionData* DeviceMotionClientAndroid::
currentDeviceMotion
() const
67
return client()->
currentDeviceMotion
();
DeviceMotionClientAndroid.h
51
virtual WebCore::DeviceMotionData*
currentDeviceMotion
() const;
/external/webkit/Source/WebKit/android/jni/
DeviceMotionClientImpl.h
54
virtual DeviceMotionData*
currentDeviceMotion
() const { return m_lastMotion.get(); }
/external/webkit/Source/WebCore/loader/
EmptyClients.h
605
virtual DeviceMotionData*
currentDeviceMotion
() const { return 0; }
Completed in 170 milliseconds