Home
last modified time | relevance | path

Searched refs:longitude (Results 1 – 25 of 27) sorted by relevance

12

/packages/apps/Camera2/src/com/android/camera/data/
DLocation.java33 private Location(double latitude, double longitude) { in Location() argument
35 mLongitude = longitude; in Location()
94 public static Location from(double latitude, double longitude) { in from() argument
95 if (Double.isNaN(latitude) || Double.isNaN(longitude) in from()
96 || Double.isInfinite(latitude) || Double.isInfinite(longitude) in from()
97 || (latitude == 0.0 && longitude == 0.0)) { in from()
101 return new Location(latitude, longitude); in from()
DVideoDataFactory.java69 double longitude = c.getDouble(VideoDataQuery.COL_LONGITUDE); in fromCursor() local
71 Location location = Location.from(latitude, longitude); in fromCursor()
DPhotoDataFactory.java67 double longitude = c.getDouble(PhotoDataQuery.COL_LONGITUDE); in fromCursor() local
68 Location location = Location.from(latitude, longitude); in fromCursor()
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DLocalMediaItem.java41 public double longitude = INVALID_LATLNG; field in LocalMediaItem
67 latLong[1] = longitude; in getLatLong()
93 if (GalleryUtils.isValidLocation(latitude, longitude)) { in getDetails()
94 details.addDetail(MediaDetails.INDEX_LOCATION, new double[] {latitude, longitude}); in getDetails()
DLocalImage.java138 longitude = cursor.getDouble(INDEX_LONGITUDE); in loadFromCursor()
157 longitude = uh.update(longitude, cursor.getDouble(INDEX_LONGITUDE)); in updateFromCursor()
249 if (GalleryUtils.isValidLocation(latitude, longitude)) { in getSupportedOperations()
DLocalVideo.java106 longitude = cursor.getDouble(INDEX_LONGITUDE); in loadFromCursor()
138 longitude = uh.update(longitude, cursor.getDouble(INDEX_LONGITUDE)); in updateFromCursor()
/packages/apps/Gallery2/src/com/android/gallery3d/util/
DGalleryUtils.java266 public static boolean isValidLocation(double latitude, double longitude) { in isValidLocation() argument
268 return (latitude != MediaItem.INVALID_LATLNG || longitude != MediaItem.INVALID_LATLNG); in isValidLocation()
272 double longitude) { in formatLatitudeLongitude() argument
275 return String.format(Locale.ENGLISH, format, latitude, longitude); in formatLatitudeLongitude()
278 public static void showOnMap(Context context, double latitude, double longitude) { in showOnMap() argument
285 latitude, longitude); in showOnMap()
294 String url = formatLatitudeLongitude("geo:%f,%f", latitude, longitude); in showOnMap()
DSaveVideoFileUtils.java124 double longitude = cursor.getDouble(2); in insertContent()
128 if ((latitude != 0f) || (longitude != 0f)) { in insertContent()
130 values.put(Video.Media.LONGITUDE, longitude); in insertContent()
DReverseGeocoder.java305 public Address lookupAddress(final double latitude, final double longitude, in lookupAddress() argument
309 + (longitude + LON_MAX)) * EARTH_RADIUS_METERS); in lookupAddress()
320 List<Address> addresses = mGeocoder.getFromLocation(latitude, longitude, 1); in lookupAddress()
372 return lookupAddress(latitude, longitude, false); in lookupAddress()
/packages/apps/UniversalMediaPlayer/java/com/android/pump/db/
DOther.java100 public boolean setLatLong(double latitude, double longitude) { in setLatLong() argument
101 if (latitude == mLatitude || longitude == mLongitude) { in setLatLong()
105 mLongitude = longitude; in setLatLong()
DVideoStore.java262 double longitude = cursor.getDouble(longitudeColumn); in loadData() local
263 updated |= other.setLatLong(latitude, longitude); in loadData()
/packages/apps/Gallery2/src/com/android/gallery3d/provider/
DGalleryProvider.java140 double longitude = PicasaSource.getLongitude(image); in queryPicasaItem() local
141 boolean isValidLatlong = GalleryUtils.isValidLocation(latitude, longitude); in queryPicasaItem()
160 columnValues[i] = isValidLatlong ? longitude : null; in queryPicasaItem()
/packages/apps/UniversalMediaPlayer/java/com/android/pump/activity/
DOtherDetailsActivity.java161 double longitude = mOther.getLongitude(); in updateViews() local
162 String latlong = String.format("%f %f", latitude, longitude); in updateViews()
/packages/apps/Messaging/src/com/android/messaging/util/exif/
DExifInterface.java1976 Rational[] longitude = getTagRationalValues(TAG_GPS_LONGITUDE); in getLatLongAsDoubles() local
1978 if (latitude == null || longitude == null || latitudeRef == null || longitudeRef == null in getLatLongAsDoubles()
1979 || latitude.length < 3 || longitude.length < 3) { in getLatLongAsDoubles()
1984 latLon[1] = convertLatOrLongToDouble(longitude, longitudeRef); in getLatLongAsDoubles()
2027 public boolean addGpsTags(double latitude, double longitude) { in addGpsTags() argument
2029 ExifTag longTag = buildTag(TAG_GPS_LONGITUDE, toExifLatLong(longitude)); in addGpsTags()
2034 longitude >= 0 ? GpsLongitudeRef.EAST in addGpsTags()
/packages/apps/Camera2/src/com/android/camera/exif/
DExifInterface.java1914 Rational[] longitude = getTagRationalValues(TAG_GPS_LONGITUDE); in getLatLongAsDoubles() local
1916 if (latitude == null || longitude == null || latitudeRef == null || longitudeRef == null in getLatLongAsDoubles()
1917 || latitude.length < 3 || longitude.length < 3) { in getLatLongAsDoubles()
1922 latLon[1] = convertLatOrLongToDouble(longitude, longitudeRef); in getLatLongAsDoubles()
1965 public boolean addGpsTags(double latitude, double longitude) { in addGpsTags() argument
1967 ExifTag longTag = buildTag(TAG_GPS_LONGITUDE, toExifLatLong(longitude)); in addGpsTags()
1972 longitude >= 0 ? ExifInterface.GpsLongitudeRef.EAST in addGpsTags()
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
DExifInterface.java1935 Rational[] longitude = getTagRationalValues(TAG_GPS_LONGITUDE); in getLatLongAsDoubles() local
1937 if (latitude == null || longitude == null || latitudeRef == null || longitudeRef == null in getLatLongAsDoubles()
1938 || latitude.length < 3 || longitude.length < 3) { in getLatLongAsDoubles()
1943 latLon[1] = convertLatOrLongToDouble(longitude, longitudeRef); in getLatLongAsDoubles()
1986 public boolean addGpsTags(double latitude, double longitude) { in addGpsTags() argument
1988 ExifTag longTag = buildTag(TAG_GPS_LONGITUDE, toExifLatLong(longitude)); in addGpsTags()
1993 longitude >= 0 ? ExifInterface.GpsLongitudeRef.EAST in addGpsTags()
/packages/apps/DocumentsUI/src/com/android/documentsui/inspector/
DInspectorController.java254 float latitude, float longitude, @Nullable String label) { in createGeoIntent() argument
256 String data = "geo:0,0?q=" + latitude + " " + longitude + "(" + label + ")"; in createGeoIntent()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
DSaveImage.java726 double longitude = cursor.getDouble(2); in getContentValues()
729 if ((latitude != 0f) || (longitude != 0f)) { in getContentValues()
731 values.put(Images.Media.LONGITUDE, longitude); in getContentValues()
/packages/services/Car/car-lib/src/android/car/navigation/
Dnavigation_state.proto496 // An object representing a latitude/longitude pair. This is expressed as a pair
497 // of doubles representing degrees latitude and degrees longitude. Unless
507 // The longitude in degrees. It must be in the range [-180.0, +180.0].
508 double longitude = 2; field
/packages/providers/MediaProvider/apex/framework/api/
Dcurrent.txt257 field @Deprecated public static final String LONGITUDE = "longitude";
398 field @Deprecated public static final String LONGITUDE = "longitude";
/packages/inputmethods/LatinIME/dictionaries/
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...
Dnb_wordlist.combined.gz1dictionary=main:nb,locale=nb,description=Norsk bokmål,date=1393228136 ...
Dpt_BR_wordlist.combined.gz1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ...

12