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

/frameworks/base/location/java/android/location/
H A DLocation.java34 * and other information such as bearing, altitude and velocity.
112 * has no bearing, altitude, speed, accuracy or extras.
585 * True if this location has an altitude.
592 * Get the altitude if available, in meters above the WGS 84 reference
595 * <p>If this location does not have an altitude then 0.0 is returned.
602 * Set the altitude, in meters above the WGS 84 reference ellipsoid.
606 public void setAltitude(double altitude) { argument
607 mAltitude = altitude;
612 * Remove the altitude from this location.
735 * 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_GpsLocationProvider.cpp92 (jdouble)location->altitude,
358 (jdouble)location->altitude,
371 jdouble altitude = 0; local
380 altitude = location->altitude;
388 flags, latitude, longitude, altitude, speed, bearing, accuracy, timestamp);
/frameworks/base/core/java/android/hardware/
H A DCamera.java2099 private static final String KEY_GPS_ALTITUDE = "gps-altitude";
3166 * Sets GPS altitude. This will be stored in JPEG EXIF header.
3168 * @param altitude GPS altitude in meters.
3170 public void setGpsAltitude(double altitude) { argument
3171 set(KEY_GPS_ALTITUDE, Double.toString(altitude));
3195 * Removes GPS latitude, longitude, altitude, and timestamp from the
/frameworks/base/services/core/java/com/android/server/location/
H A DGpsLocationProvider.java1353 private void reportLocation(int flags, double latitude, double longitude, double altitude, argument
1369 mLocation.setAltitude(altitude);
1632 double altitude,
1645 location.setAltitude(altitude);
1686 double longitude, double altitude, float speed, float bearing, float accuracy,
1695 altitude,
1713 double longitude, double altitude, float speed, float bearing, float accuracy,
1722 altitude,
1628 buildLocation( int flags, double latitude, double longitude, double altitude, float speed, float bearing, float accuracy, long timestamp) argument
1685 reportGeofenceTransition(int geofenceId, int flags, double latitude, double longitude, double altitude, float speed, float bearing, float accuracy, long timestamp, int transition, long transitionTimestamp) argument
1712 reportGeofenceStatus(int status, int flags, double latitude, double longitude, double altitude, float speed, float bearing, float accuracy, long timestamp) argument

Completed in 144 milliseconds