Searched refs:altitude (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java225 Float altitude = getNullableFloat(cursor, ALTITUDE);
226 if (altitude != null) {
227 location.setAltitude(altitude);
/frameworks/base/location/java/android/location/
H A DLocation.java30 * UTC timestamp. and optionally information on altitude, speed, and
514 * Returns true if this fix contains altitude information, false
522 * Returns the altitude of this fix. If {@link #hasAltitude} is false,
530 * Sets the altitude of this fix. Following this call,
533 public void setAltitude(double altitude) { argument
534 mAltitude = altitude;
539 * Clears the altitude of this fix. Following this call,
/frameworks/base/core/java/android/hardware/
H A DCamera.java728 private static final String KEY_GPS_ALTITUDE = "gps-altitude";
1338 * Sets GPS altitude. This will be stored in JPEG EXIF header.
1340 * @param altitude GPS altitude in meters.
1342 public void setGpsAltitude(double altitude) { argument
1343 set(KEY_GPS_ALTITUDE, Double.toString(altitude));
1367 * Removes GPS latitude, longitude, altitude, and timestamp from the
/frameworks/base/location/java/com/android/internal/location/
H A DGpsLocationProvider.java593 * Returns true if the provider is able to provide altitude
594 * information, false otherwise. A provider that reports altitude
963 private void reportLocation(int flags, double latitude, double longitude, double altitude, argument
999 mLocation.setAltitude(altitude);
/frameworks/base/core/jni/
H A Dandroid_location_GpsLocationProvider.cpp315 (jdouble)sGpsLocationCopy.altitude,

Completed in 845 milliseconds