OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:startUpdating
(Results
1 - 25
of
27
) sorted by null
1
2
/external/webkit/Source/WebKit2/UIProcess/
WebGeolocationProvider.cpp
34
void WebGeolocationProvider::
startUpdating
(WebGeolocationManagerProxy* geolocationManager)
36
if (!m_client.
startUpdating
)
39
m_client.
startUpdating
(toAPI(geolocationManager), m_client.clientInfo);
WebGeolocationManagerProxy.cpp
80
void WebGeolocationManagerProxy::
startUpdating
()
85
m_provider.
startUpdating
(this);
/external/webkit/Source/WebCore/platform/mock/
DeviceOrientationClientMock.cpp
47
void DeviceOrientationClientMock::
startUpdating
()
GeolocationServiceMock.cpp
85
bool GeolocationServiceMock::
startUpdating
(PositionOptions*, bool /* suspend */)
87
bool GeolocationServiceMock::
startUpdating
(PositionOptions*)
GeolocationClientMock.cpp
137
void GeolocationClientMock::
startUpdating
()
/external/webkit/Source/WebKit/chromium/src/
DeviceOrientationClientProxy.cpp
49
void DeviceOrientationClientProxy::
startUpdating
()
53
m_client->
startUpdating
();
WebDeviceOrientationClientMock.cpp
46
void WebDeviceOrientationClientMock::
startUpdating
()
48
m_clientMock->
startUpdating
();
GeolocationClientProxy.cpp
62
void GeolocationClientProxy::
startUpdating
()
64
m_client->
startUpdating
();
WebGeolocationClientMock.cpp
95
void WebGeolocationClientMock::
startUpdating
()
97
m_clientMock->
startUpdating
();
/external/webkit/Source/WebKit/android/WebCoreSupport/
DeviceMotionClientAndroid.cpp
55
void DeviceMotionClientAndroid::
startUpdating
()
57
client()->
startUpdating
();
DeviceOrientationClientAndroid.cpp
55
void DeviceOrientationClientAndroid::
startUpdating
()
57
client()->
startUpdating
();
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DeviceMotionClientQt.cpp
50
void DeviceMotionClientQt::
startUpdating
()
DeviceOrientationClientQt.cpp
49
void DeviceOrientationClientQt::
startUpdating
()
DeviceOrientationClientMockQt.cpp
56
void DeviceOrientationClientMockQt::
startUpdating
()
58
m_clientMock->
startUpdating
();
GeolocationClientQt.cpp
96
void GeolocationClientQt::
startUpdating
()
/external/webkit/Source/WebKit2/UIProcess/API/C/
WKGeolocationManager.h
42
WKGeolocationProviderStartUpdatingCallback
startUpdating
;
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebGeolocationClient.cpp
51
void WebGeolocationClient::
startUpdating
()
/external/webkit/Source/WebCore/platform/efl/
GeolocationServiceEfl.cpp
48
bool GeolocationServiceEfl::
startUpdating
(PositionOptions* options)
/external/webkit/Source/WebKit/win/WebCoreSupport/
WebGeolocationClient.cpp
51
void WebGeolocationClient::
startUpdating
()
/external/webkit/Source/WebCore/platform/
GeolocationService.h
53
virtual bool
startUpdating
(PositionOptions*, bool suspend) { return false; }
55
virtual bool
startUpdating
(PositionOptions*) { return false; }
/external/webkit/Source/WebCore/platform/android/
GeolocationServiceAndroid.cpp
71
bool GeolocationServiceAndroid::
startUpdating
(PositionOptions* options, bool suspend)
/external/webkit/Source/WebKit/android/jni/
DeviceMotionClientImpl.cpp
102
void DeviceMotionClientImpl::
startUpdating
()
DeviceOrientationClientImpl.cpp
102
void DeviceOrientationClientImpl::
startUpdating
()
/external/webkit/Source/WebCore/platform/gtk/
GeolocationServiceGtk.cpp
77
bool GeolocationServiceGtk::
startUpdating
(PositionOptions* options)
/external/webkit/Source/WebCore/page/
Geolocation.cpp
324
// if we don't yet have permission, request for permission before calling
startUpdating
()
329
else if (
startUpdating
(notifier.get()))
383
if (notifier->hasZeroTimeout() ||
startUpdating
(notifier))
701
bool Geolocation::
startUpdating
(GeoNotifier* notifier)
720
return m_service->
startUpdating
(notifier->m_options.get(), PlatformBridge::isWebViewPaused(view));
722
return m_service->
startUpdating
(notifier->m_options.get());
753
if (
startUpdating
(notifier))
Completed in 391 milliseconds
1
2