HomeSort by relevance Sort by last modified time
    Searched refs:longitude (Results 26 - 50 of 83) sorted by null

12 3 4

  /external/webkit/WebCore/platform/android/
GeolocationServiceAndroid.cpp 170 // differences in latitude and longitude.
172 + fabs(position1->coords()->longitude() - position2->coords()->longitude());
  /frameworks/base/services/java/com/android/server/location/
GeocoderProxy.java 90 public String getFromLocation(double latitude, double longitude, int maxResults,
98 return provider.getFromLocation(latitude, longitude, maxResults,
  /frameworks/base/location/java/android/location/
ILocationManager.aidl 56 void addProximityAlert(double latitude, double longitude, float distance,
71 String getFromLocation(double latitude, double longitude, int maxResults,
Address.java 325 * Returns true if a longitude has been assigned to this Address,
333 * Returns the longitude of the address if known.
336 * a longitude.
347 * Sets the longitude associated with this address.
349 public void setLongitude(double longitude) {
350 mLongitude = longitude;
355 * Removes any longitude associated with this address.
463 sb.append(",longitude=");
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
callback-exception.js 16 shouldBe('position.coords.longitude', 'mockLongitude');
watch.js 16 shouldBe('position.coords.longitude', 'mockLongitude');
maximum-age.js 17 shouldBe('position.coords.longitude', 'mockLongitude');
  /external/webkit/WebCore/platform/gtk/
GeolocationServiceGtk.cpp 192 void GeolocationServiceGtk::position_changed(GeocluePosition*, GeocluePositionFields fields, int timestamp, double latitude, double longitude, double altitude, GeoclueAccuracy* accuracy, GeolocationServiceGtk* that)
201 that->m_longitude = longitude;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
KmlParser.java 141 double longitude = Double.parseDouble(m.group(1)); local
144 locationNode.setLocation(longitude, latitude);
GpxParser.java 236 double longitude = Double.parseDouble(attributes.getValue(ATTR_LONGITUDE)); local
239 locationNode.setLocation(longitude, latitude);
  /external/chromium/third_party/icu/source/i18n/
astro.cpp 95 * 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) :
275 fLongitude = normPI(longitude * (double)DEG_RAD);
447 return eclipticToEquatorial(result, ecliptic.longitude, ecliptic.latitude);
453 * @param eclipLong The ecliptic longitude
    [all...]
  /external/icu4c/i18n/
astro.cpp 95 * 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) :
275 fLongitude = normPI(longitude * (double)DEG_RAD);
447 return eclipticToEquatorial(result, ecliptic.longitude, ecliptic.latitude);
453 * @param eclipLong The ecliptic longitude
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
ReverseGeocoder.java 109 // No latitude, longitude information available.
310 protected String getReverseGeocodedLocation(final double latitude, final double longitude, final int desiredNumDetails) {
314 Address addr = lookupAddress(latitude, longitude);
404 private Address lookupAddress(final double latitude, final double longitude) {
406 long locationKey = (long) (((latitude + LocationMediaFilter.LAT_MAX) * 2 * LocationMediaFilter.LAT_MAX + (longitude + LocationMediaFilter.LON_MAX)) * LocationMediaFilter.EARTH_RADIUS_METERS);
411 List<Address> addresses = mGeocoder.getFromLocation(latitude, longitude, 1);
464 return lookupAddress(latitude, longitude);
ImageManager.java 139 long dateTaken, Double latitude, Double longitude, String directory,
185 if (latitude != null && longitude != null) {
187 values.put(Images.Media.LONGITUDE, longitude.floatValue());
Util.java 280 public static void openMaps(Context context, double latitude, double longitude) {
284 // We don't use "geo:latitude,longitude" because it only centers
288 String url = String.format("http://maps.google.com/maps?f=q&q=(%s,%s)", latitude, longitude);
295 String url = String.format("geo:%s,%s", latitude, longitude);
PicasaDataSource.java 177 item.mLongitude = photo.longitude;
247 @Column("longitude")
248 public double longitude; field in class:PicasaDataSource.PhotoProjection
  /external/webkit/WebCore/page/
GeolocationPositionCache.cpp 93 "longitude REAL NOT NULL, "
114 statement.getColumnDouble(1), // longitude
138 "longitude, "
150 statement.bindDouble(2, position->coords()->longitude());
  /hardware/libhardware/include/hardware/
gps.h 80 /** GpsLocation has valid latitude and longitude. */
237 /** Represents longitude in degrees. */
238 double longitude; member in struct:__anon9640
402 * latitude and longitude are measured in degrees
405 int (*inject_location)(double latitude, double longitude, float accuracy);
  /external/webkit/WebKitTools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp 257 void LayoutTestController::setMockGeolocationPosition(double latitude, double longitude, double accuracy)
  /external/webkit/WebCore/platform/mac/
GeolocationServiceMac.mm 179 newLocation.coordinate.longitude,
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
CallbackProxy.java 480 double longitude,
483 longitude,
  /cts/tests/tests/location/src/android/location/cts/
LocationManagerTest.java 838 private void registerProximityListener(double latitude, double longitude, float radius,
841 mManager.addProximityAlert(latitude, longitude, radius, expiration, mPendingIntent);
870 final double longitude) {
    [all...]
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 210 int a, longitude, latitude; local
223 // longitude -pi to pi
224 for (longitude = 0; longitude < longitudeCount; ++longitude)
230 float t1 = -PI + longitude * 2 * PI / resol1;
231 float t2 = -PI + (longitude + 1) * 2 * PI / resol1;
336 } // longitude
  /frameworks/base/opengl/tests/angeles/
demo.c 210 int a, longitude, latitude; local
223 // longitude -pi to pi
224 for (longitude = 0; longitude < longitudeCount; ++longitude)
230 float t1 = -PI + longitude * 2 * PI / resol1;
231 float t2 = -PI + (longitude + 1) * 2 * PI / resol1;
336 } // longitude
  /frameworks/base/services/java/com/android/server/
LocationManagerService.java 1409 double longitude = loc.getLongitude(); local
    [all...]

Completed in 690 milliseconds

12 3 4