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

/frameworks/base/location/java/android/location/
H A DLocation.java33 * and other information such as bearing, altitude and velocity.
111 * has no bearing, altitude, speed, accuracy or extras.
579 * True if this location has an altitude.
586 * Get the altitude if available, in meters above sea level.
588 * <p>If this location does not have an altitude then 0.0 is returned.
595 * Set the altitude, in meters above sea level.
599 public void setAltitude(double altitude) { argument
600 mAltitude = altitude;
605 * Remove the altitude from this location.
728 * velocity or altitude i
[all...]
/frameworks/base/services/jni/
H A Dcom_android_server_location_GpsLocationProvider.cpp84 (jdouble)location->altitude,
251 (jdouble)location->altitude,
264 jdouble altitude = 0; local
273 altitude = location->altitude;
281 flags, latitude, longitude, altitude, speed, bearing, accuracy, timestamp);
/frameworks/base/services/java/com/android/server/location/
H A DGpsLocationProvider.java1127 private void reportLocation(int flags, double latitude, double longitude, double altitude, argument
1143 mLocation.setAltitude(altitude);
1439 double altitude,
1452 location.setAltitude(altitude);
1493 double longitude, double altitude, float speed, float bearing, float accuracy,
1502 altitude,
1520 double longitude, double altitude, float speed, float bearing, float accuracy,
1529 altitude,
1435 buildLocation( int flags, double latitude, double longitude, double altitude, float speed, float bearing, float accuracy, long timestamp) argument
1492 reportGeofenceTransition(int geofenceId, int flags, double latitude, double longitude, double altitude, float speed, float bearing, float accuracy, long timestamp, int transition, long transitionTimestamp) argument
1519 reportGeofenceStatus(int status, int flags, double latitude, double longitude, double altitude, float speed, float bearing, float accuracy, long timestamp) argument
/frameworks/base/core/java/android/hardware/
H A DCamera.java1840 private static final String KEY_GPS_ALTITUDE = "gps-altitude";
2875 * Sets GPS altitude. This will be stored in JPEG EXIF header.
2877 * @param altitude GPS altitude in meters.
2879 public void setGpsAltitude(double altitude) { argument
2880 set(KEY_GPS_ALTITUDE, Double.toString(altitude));
2904 * Removes GPS latitude, longitude, altitude, and timestamp from the

Completed in 149 milliseconds