HomeSort by relevance Sort by last modified time
    Searched full:watchid (Results 1 - 7 of 7) sorted by null

  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
timeout-clear-watch.js 6 var watchId = navigator.geolocation.watchPosition(function() {
13 navigator.geolocation.clearWatch(watchId);
permission-denied-already-clear-watch.js 22 var watchId = navigator.geolocation.watchPosition(function(p) {
29 navigator.geolocation.clearWatch(watchId);
  /external/webkit/WebCore/page/
Geolocation.idl 35 void clearWatch(in long watchId);
Geolocation.h 77 void clearWatch(int watchId);
Geolocation.cpp 401 void Geolocation::clearWatch(int watchId)
403 m_watchers.remove(watchId);
  /external/webkit/WebCore/bindings/js/
JSGeolocationCustom.cpp 176 int watchID = m_impl->watchPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.release());
177 return jsNumber(exec, watchID);
  /external/webkit/WebCore/bindings/v8/custom/
V8GeolocationCustom.cpp 215 int watchId = geolocation->watchPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.release());
216 return v8::Number::New(watchId);

Completed in 132 milliseconds