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

  /external/webkit/WebCore/platform/android/
GeolocationServiceAndroid.cpp 75 if (m_lastPosition || m_lastError) {
112 m_lastPosition = 0;
136 if (!m_lastPosition
137 || isPositionMovement(m_lastPosition.get(), position.get())
138 || isPositionMoreAccurate(m_lastPosition.get(), position.get())
139 || isPositionMoreTimely(m_lastPosition.get(), position.get())) {
140 m_lastPosition = position;
158 ASSERT(m_lastPosition || m_lastError);
159 if (m_lastPosition)
GeolocationServiceAndroid.h 53 virtual Geoposition* lastPosition() const { return m_lastPosition.get(); }
72 RefPtr<Geoposition> m_lastPosition;
  /external/webkit/WebCore/platform/mac/
GeolocationServiceMac.h 57 virtual Geoposition* lastPosition() const { return m_lastPosition.get(); }
69 RefPtr<Geoposition> m_lastPosition;
GeolocationServiceMac.mm 128 m_lastPosition = position;
  /external/webkit/WebCore/platform/gtk/
GeolocationServiceGtk.h 56 RefPtr<Geoposition> m_lastPosition;
GeolocationServiceGtk.cpp 80 m_lastPosition = 0;
151 return m_lastPosition.get();
188 m_lastPosition = Geoposition::create(coordinates.release(), m_timestamp * 1000.0);
211 m_lastPosition = 0;
  /external/webkit/WebCore/page/
Geolocation.h 185 RefPtr<Geoposition> m_lastPosition;
Geolocation.cpp 264 m_lastPosition = createGeoposition(page->geolocationController()->lastPosition());
266 m_lastPosition = m_service->lastPosition();
269 return m_lastPosition.get();

Completed in 84 milliseconds