Searched defs:altitude (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DExifInterfaceTest.java95 public final float altitude; field in class:ExifInterfaceTest.ExpectedValue
138 altitude = typedArray.getFloat(6, 0f);
286 assertEquals(expectedValue.altitude, exifInterface.getAltitude(.0), DIFFERENCE_TOLERANCE);
/frameworks/base/location/java/android/location/
H A DLocation.java34 * and other information such as bearing, altitude and velocity.
131 * has no bearing, altitude, speed, accuracy or extras.
596 * True if this location has an altitude.
603 * Get the altitude if available, in meters above the WGS 84 reference
606 * <p>If this location does not have an altitude then 0.0 is returned.
613 * Set the altitude, in meters above the WGS 84 reference ellipsoid.
617 public void setAltitude(double altitude) { argument
618 mAltitude = altitude;
623 * Remove the altitude from this location.
746 * velocity or altitude i
[all...]
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DCameraSettings.java72 public final double altitude; field in class:CameraSettings.GpsData
81 * {@code latitude}, {@code longitude}, and {@code altitude} will be
84 public GpsData(double latitude, double longitude, double altitude, long timeStamp, argument
87 (latitude != 0.0 || longitude != 0.0 || altitude != 0.0)) {
92 this.altitude = altitude;
101 this.altitude = src.altitude;
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp116 (jdouble)location->altitude,
475 (jdouble)location->altitude,
488 jdouble altitude = 0; local
497 altitude = location->altitude;
505 flags, latitude, longitude, altitude, speed, bearing, accuracy, timestamp);
/frameworks/base/core/java/android/hardware/
H A DCamera.java2105 private static final String KEY_GPS_ALTITUDE = "gps-altitude";
3172 * Sets GPS altitude. This will be stored in JPEG EXIF header.
3174 * @param altitude GPS altitude in meters.
3176 public void setGpsAltitude(double altitude) { argument
3177 set(KEY_GPS_ALTITUDE, Double.toString(altitude));
3201 * Removes GPS latitude, longitude, altitude, and timestamp from the
/frameworks/base/services/core/java/com/android/server/location/
H A DGnssLocationProvider.java1449 private void reportLocation(int flags, double latitude, double longitude, double altitude, argument
1465 mLocation.setAltitude(altitude);
1732 double altitude,
1745 location.setAltitude(altitude);
1786 double longitude, double altitude, float speed, float bearing, float accuracy,
1795 altitude,
1813 double longitude, double altitude, float speed, float bearing, float accuracy,
1822 altitude,
1728 buildLocation( int flags, double latitude, double longitude, double altitude, float speed, float bearing, float accuracy, long timestamp) argument
1785 reportGeofenceTransition(int geofenceId, int flags, double latitude, double longitude, double altitude, float speed, float bearing, float accuracy, long timestamp, int transition, long transitionTimestamp) argument
1812 reportGeofenceStatus(int status, int flags, double latitude, double longitude, double altitude, float speed, float bearing, float accuracy, long timestamp) argument

Completed in 456 milliseconds