OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_lastPosition
(Results
1 - 16
of
16
) sorted by null
/external/webkit/Source/WebKit/qt/WebCoreSupport/
GeolocationClientQt.h
56
virtual GeolocationPosition* lastPosition() { return
m_lastPosition
.get(); }
67
RefPtr<GeolocationPosition>
m_lastPosition
;
GeolocationClientQt.cpp
48
,
m_lastPosition
(0)
87
m_lastPosition
= GeolocationPosition::create(timeStampInSeconds, latitude, longitude,
93
page->geolocationController()->positionChanged(
m_lastPosition
.get());
/external/webkit/Source/WebCore/platform/android/
GeolocationServiceAndroid.cpp
84
if (
m_lastPosition
|| m_lastError) {
121
m_lastPosition
= 0;
145
if (!
m_lastPosition
146
|| isPositionMovement(
m_lastPosition
.get(), position.get())
147
|| isPositionMoreAccurate(
m_lastPosition
.get(), position.get())
148
|| isPositionMoreTimely(
m_lastPosition
.get(), position.get())) {
149
m_lastPosition
= position;
167
ASSERT(
m_lastPosition
|| m_lastError);
168
if (
m_lastPosition
)
GeolocationServiceAndroid.h
53
virtual Geoposition* lastPosition() const { return
m_lastPosition
.get(); }
72
RefPtr<Geoposition>
m_lastPosition
;
/external/webkit/Source/WebKit/chromium/src/
GeolocationClientProxy.cpp
81
m_lastPosition
= webPosition;
83
m_lastPosition
.clear();
85
return
m_lastPosition
.get();
GeolocationClientProxy.h
56
RefPtr<WebCore::GeolocationPosition>
m_lastPosition
;
/external/webkit/Source/WebCore/platform/efl/
GeolocationServiceEfl.h
49
RefPtr<Geoposition>
m_lastPosition
;
GeolocationServiceEfl.cpp
71
return
m_lastPosition
.get();
/external/webkit/Source/WebCore/platform/mock/
GeolocationClientMock.cpp
64
m_lastPosition
= position;
72
m_lastPosition
= 0;
127
m_lastPosition
= 0;
159
return
m_lastPosition
.get();
174
if (
m_lastPosition
.get())
175
m_controller->positionChanged(
m_lastPosition
.get());
GeolocationClientMock.h
81
RefPtr<GeolocationPosition>
m_lastPosition
;
/external/webkit/Source/WebCore/page/
GeolocationController.cpp
97
m_lastPosition
= position;
114
if (
m_lastPosition
.get())
115
return
m_lastPosition
.get();
GeolocationController.h
66
RefPtr<GeolocationPosition>
m_lastPosition
;
Geolocation.h
203
RefPtr<Geoposition>
m_lastPosition
;
Geolocation.cpp
275
m_lastPosition
= createGeoposition(page->geolocationController()->lastPosition());
277
m_lastPosition
= m_service->lastPosition();
280
return
m_lastPosition
.get();
/external/webkit/Source/WebCore/platform/gtk/
GeolocationServiceGtk.cpp
81
m_lastPosition
= 0;
154
return
m_lastPosition
.get();
169
m_lastPosition
= Geoposition::create(coordinates.release(), m_timestamp * 1000.0);
210
m_lastPosition
= 0;
GeolocationServiceGtk.h
57
RefPtr<Geoposition>
m_lastPosition
;
Completed in 275 milliseconds