HomeSort by relevance Sort by last modified time
    Searched defs:latitude (Results 1 - 25 of 247) sorted by null

1 2 3 4 5 6 7 8 910

  /developers/build/prebuilts/gradle/SpeedTracker/Shared/src/main/java/com/example/android/wearable/speedtracker/common/
LocationEntry.java 27 public double latitude; field in class:LocationEntry
32 public LocationEntry(Calendar calendar, double latitude, double longitude) {
34 this.latitude = latitude;
  /developers/samples/android/wearable/wear/SpeedTracker/Shared/src/main/java/com/example/android/wearable/speedtracker/common/
LocationEntry.java 27 public double latitude; field in class:LocationEntry
32 public LocationEntry(Calendar calendar, double latitude, double longitude) {
34 this.latitude = latitude;
  /development/samples/browseable/SpeedTracker/Shared/src/com.example.android.wearable.speedtracker.common/
LocationEntry.java 27 public double latitude; field in class:LocationEntry
32 public LocationEntry(Calendar calendar, double latitude, double longitude) {
34 this.latitude = latitude;
  /packages/apps/Camera2/src/com/android/camera/data/
VideoDataFactory.java 68 double latitude = c.getDouble(VideoDataQuery.COL_LATITUDE); local
71 Location location = Location.from(latitude, longitude);
PhotoDataFactory.java 66 double latitude = c.getDouble(PhotoDataQuery.COL_LATITUDE); local
68 Location location = Location.from(latitude, longitude);
  /developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/db/
UpdateService.java 83 double latitude = dataMap.getDouble(Constants.KEY_LATITUDE); local
88 new LocationEntry(calendar, latitude, longitude));
  /developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/db/
UpdateService.java 83 double latitude = dataMap.getDouble(Constants.KEY_LATITUDE); local
88 new LocationEntry(calendar, latitude, longitude));
  /development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/db/
UpdateService.java 83 double latitude = dataMap.getDouble(Constants.KEY_LATITUDE); local
88 new LocationEntry(calendar, latitude, longitude));
  /external/icu/icu4c/source/i18n/
astro.h 64 * This is a spherical coordinate system in which the latitude
83 * @param lat The ecliptic latitude, measured in radians.
88 latitude = lat;
94 * @param lat The ecliptic latitude, measured in radians.
99 latitude = lat;
110 * The ecliptic latitude, in radians. This specifies an object's
115 double latitude; member in class:CalendarAstronomer::Ecliptic
305 * latitude and longitude. The object's time is set to the current
311 * @param latitude The desired latitude, in <em>degrees</em>. Positiv
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAddress.java 17 private double latitude; field in class:ShadowAddress
23 return latitude;
27 public void setLatitude(double latitude) {
28 this.latitude = latitude;
ShadowLocation.java 20 private double latitude; field in class:ShadowLocation
57 latitude = l.getLatitude();
159 return latitude;
163 public void setLatitude(double latitude) {
164 this.latitude = latitude;
209 if (Double.compare(that.latitude, latitude) != 0) return false;
223 temp = latitude != +0.0d ? Double.doubleToLongBits(latitude) : 0L
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/location/
UpdateCountryService.java 88 double latitude = location.getLatitude(); local
89 // Latitude has to be between 90 and -90 (latitude of north and south poles wrt equator)
90 if (latitude <= 90 && latitude >= -90) {
97 Log.w(TAG, "Invalid latitude");
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalMediaItem.java 40 public double latitude = INVALID_LATLNG; field in class:LocalMediaItem
66 latLong[0] = latitude;
93 if (GalleryUtils.isValidLocation(latitude, longitude)) {
94 details.addDetail(MediaDetails.INDEX_LOCATION, new double[] {latitude, longitude});
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/threegpp26244/
LocationInformationBox.java 20 private double latitude; field in class:LocationInformationBox
62 return latitude;
65 public void setLatitude(double latitude) {
66 this.latitude = latitude;
104 latitude = IsoTypeReader.readFixedPoint1616(content);
119 IsoTypeWriter.writeFixedPont1616(byteBuffer, latitude);
  /external/piex/src/
piex_types.h 70 Rational latitude[3]; member in struct:piex::PreviewImageData::Gps
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 296 double latitude = location.gpsLocation.latitude; local
303 if (latitude > 0)
310 latitude *= -1.0;
323 latMinutes = fmod(latitude * 60.0 , 60.0);
327 (uint8_t)floor(latitude), latMinutes, latHemisphere,
449 double latitude = location.gpsLocation.latitude; local
456 if (latitude > 0)
463 latitude *= -1.0
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 293 double latitude = location.gpsLocation.latitude; local
300 if (latitude > 0)
307 latitude *= -1.0;
320 latMinutes = fmod(latitude * 60.0 , 60.0);
324 (uint8_t)floor(latitude), latMinutes, latHemisphere,
446 double latitude = location.gpsLocation.latitude; local
453 if (latitude > 0)
460 latitude *= -1.0
    [all...]
  /hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 292 double latitude = location.gpsLocation.latitude; local
299 if (latitude > 0)
306 latitude *= -1.0;
319 latMinutes = fmod(latitude * 60.0 , 60.0);
323 (uint8_t)floor(latitude), latMinutes, latHemisphere,
445 double latitude = location.gpsLocation.latitude; local
452 if (latitude > 0)
459 latitude *= -1.0
    [all...]
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 289 double latitude = location.gpsLocation.latitude; local
296 if (latitude > 0)
303 latitude *= -1.0;
316 latMinutes = fmod(latitude * 60.0 , 60.0);
320 (uint8_t)floor(latitude), latMinutes, latHemisphere,
442 double latitude = location.gpsLocation.latitude; local
449 if (latitude > 0)
456 latitude *= -1.0
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 297 double latitude = location.gpsLocation.latitude; local
304 if (latitude > 0)
311 latitude *= -1.0;
324 latMinutes = fmod(latitude * 60.0 , 60.0);
328 (uint8_t)floor(latitude), latMinutes, latHemisphere,
450 double latitude = location.gpsLocation.latitude; local
457 if (latitude > 0)
464 latitude *= -1.0
    [all...]
  /hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 297 double latitude = location.gpsLocation.latitude; local
304 if (latitude > 0)
311 latitude *= -1.0;
324 latMinutes = fmod(latitude * 60.0 , 60.0);
328 (uint8_t)floor(latitude), latMinutes, latHemisphere,
450 double latitude = location.gpsLocation.latitude; local
457 if (latitude > 0)
464 latitude *= -1.0
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/provider/
GalleryProvider.java 62 ImageColumns.LATITUDE,
139 double latitude = PicasaSource.getLatitude(image); local
141 boolean isValidLatlong = GalleryUtils.isValidLocation(latitude, longitude);
157 } else if (ImageColumns.LATITUDE.equals(column)) {
158 columnValues[i] = isValidLatlong ? latitude : null;
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 116 double latitude = 1.23456789; local
117 address.setLatitude(latitude);
119 assertEquals(latitude, address.getLatitude());
210 "countryName=null,hasLatitude=false,latitude=0.0,hasLongitude=false," +
  /cts/tests/tests/media/src/android/media/cts/
ExifInterfaceTest.java 102 public final float latitude; field in class:ExifInterfaceTest.ExpectedValue
148 latitude = typedArray.getFloat(index++, 0f);
210 Log.v(TAG, fileName + " Latitude = " + latLong[0]);
267 assertEquals(expectedValue.latitude, latLong[0], DIFFERENCE_TOLERANCE);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
ExifInterfaceTest.java 93 public final float latitude; field in class:ExifInterfaceTest.ExpectedValue
136 latitude = typedArray.getFloat(4, 0f);
227 Log.v(TAG, fileName + " Latitude = " + latLong[0]);
282 assertEquals(expectedValue.latitude, latLong[0], DIFFERENCE_TOLERANCE);

Completed in 543 milliseconds

1 2 3 4 5 6 7 8 910