Searched defs:longitude (Results 1 - 14 of 14) sorted by relevance

/external/webkit/WebKit/android/jni/
H A DMockGeolocation.cpp47 static void setPosition(JNIEnv* env, jobject, double latitude, double longitude, double accuracy) argument
50 longitude,
/external/webkit/WebKit/win/
H A DWebGeolocationPosition.cpp84 HRESULT WebGeolocationPosition::initWithTimestamp(double timestamp, double latitude, double longitude, double accuracy) argument
87 m_position = GeolocationPosition::create(timestamp, latitude, longitude, accuracy);
/external/webkit/WebCore/page/
H A DCoordinates.h39 static PassRefPtr<Coordinates> create(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new Coordinates(latitude, longitude, providesAltitude, altitude, accuracy, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); } argument
42 double longitude() const { return m_longitude; } function in class:WebCore::Coordinates
55 Coordinates(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
57 , m_longitude(longitude)
H A DGeolocationPosition.h39 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy)); } argument
41 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); } argument
46 double longitude() const { return m_longitude; } function in class:WebCore::GeolocationPosition
59 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy) argument
62 , m_longitude(longitude)
75 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
78 , m_longitude(longitude)
/external/webkit/WebCore/platform/gtk/
H A DGeolocationServiceGtk.cpp192 void GeolocationServiceGtk::position_changed(GeocluePosition*, GeocluePositionFields fields, int timestamp, double latitude, double longitude, double altitude, GeoclueAccuracy* accuracy, GeolocationServiceGtk* that) argument
201 that->m_longitude = longitude;
/external/chromium/third_party/icu/source/i18n/
H A Dastro.h64 * The longitude specifies the position along the ecliptic plane
82 * @param lon The ecliptic longitude, measured in radians.
87 longitude = lon;
93 * @param lon The ecliptic longitude, measured in radians.
98 longitude = lon;
116 * The ecliptic longitude, in radians.
126 double longitude; member in class:CalendarAstronomer::Ecliptic
272 * it takes for the moon to return the same ecliptic longitude as the sun.
273 * It is longer than the sidereal month because the sun's longitude increases
303 * latitude and longitude
[all...]
H A Dastro.cpp95 * it takes for the moon to return the same ecliptic longitude as the sun.
96 * It is longer than the sidereal month because the sun's longitude increases
108 * for the moon to return to the same ecliptic longitude relative to the
260 * latitude and longitude. The object's time is set to the current
263 * @param longitude The desired longitude, in <em>degrees</em> east of
273 CalendarAstronomer::CalendarAstronomer(double longitude, double latitude) : argument
275 fLongitude = normPI(longitude * (double)DEG_RAD);
447 return eclipticToEquatorial(result, ecliptic.longitude, ecliptic.latitude);
453 * @param eclipLong The ecliptic longitude
637 getSunLongitude(double jDay, double &longitude, double &meanAnomaly) argument
[all...]
/external/icu4c/i18n/
H A Dastro.h64 * The longitude specifies the position along the ecliptic plane
82 * @param lon The ecliptic longitude, measured in radians.
87 longitude = lon;
93 * @param lon The ecliptic longitude, measured in radians.
98 longitude = lon;
116 * The ecliptic longitude, in radians.
126 double longitude; member in class:CalendarAstronomer::Ecliptic
272 * it takes for the moon to return the same ecliptic longitude as the sun.
273 * It is longer than the sidereal month because the sun's longitude increases
303 * latitude and longitude
[all...]
H A Dastro.cpp95 * it takes for the moon to return the same ecliptic longitude as the sun.
96 * It is longer than the sidereal month because the sun's longitude increases
108 * for the moon to return to the same ecliptic longitude relative to the
260 * latitude and longitude. The object's time is set to the current
263 * @param longitude The desired longitude, in <em>degrees</em> east of
273 CalendarAstronomer::CalendarAstronomer(double longitude, double latitude) : argument
275 fLongitude = normPI(longitude * (double)DEG_RAD);
447 return eclipticToEquatorial(result, ecliptic.longitude, ecliptic.latitude);
453 * @param eclipLong The ecliptic longitude
637 getSunLongitude(double jDay, double &longitude, double &meanAnomaly) argument
[all...]
/external/chromium/third_party/icu/source/test/intltest/
H A Dastrotst.cpp96 double longitude = astro->getSunLongitude(); local
97 //longitude = 0;
100 logln((UnicodeString)"Sun position is " + result.toString() + (UnicodeString)"; " /* + result.toHmsString()*/ + " Sun longitude is " + longitude );
/external/icu4c/test/intltest/
H A Dastrotst.cpp96 double longitude = astro->getSunLongitude(); local
97 //longitude = 0;
100 logln((UnicodeString)"Sun position is " + result.toString() + (UnicodeString)"; " /* + result.toHmsString()*/ + " Sun longitude is " + longitude );
/external/webkit/WebKitTools/DumpRenderTree/wx/
H A DLayoutTestControllerWx.cpp257 void LayoutTestController::setMockGeolocationPosition(double latitude, double longitude, double accuracy) argument
/external/webkit/WebKitTools/DumpRenderTree/gtk/
H A DLayoutTestControllerGtk.cpp362 void LayoutTestController::setMockGeolocationPosition(double latitude, double longitude, double accuracy) argument
/external/webkit/WebKitTools/DumpRenderTree/win/
H A DLayoutTestControllerWin.cpp315 void LayoutTestController::setMockGeolocationPosition(double latitude, double longitude, double accuracy) argument

Completed in 139 milliseconds