Home
last modified time | relevance | path

Searched refs:latLong (Results 1 – 6 of 6) sorted by relevance

/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DMediaItem.java68 public void getLatLong(double[] latLong) { in getLatLong() argument
69 latLong[0] = INVALID_LATLNG; in getLatLong()
70 latLong[1] = INVALID_LATLNG; in getLatLong()
H A DLocalMediaItem.java65 public void getLatLong(double[] latLong) { in getLatLong() argument
66 latLong[0] = latitude; in getLatLong()
67 latLong[1] = longitude; in getLatLong()
H A DLocationClustering.java71 final double[] latLong = new double[2]; in run() local
78 item.getLatLong(latLong); in run()
79 s.lat = latLong[0]; in run()
80 s.lng = latLong[1]; in run()
/aosp12/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DExifInterfaceTest.java225 float[] latLong = new float[2]; in printExifTagsAndValues() local
226 if (exifInterface.getLatLong(latLong)) { in printExifTagsAndValues()
227 Log.v(TAG, fileName + " Latitude = " + latLong[0]); in printExifTagsAndValues()
228 Log.v(TAG, fileName + " Longitude = " + latLong[1]); in printExifTagsAndValues()
279 float[] latLong = new float[2]; in compareWithExpectedValue() local
280 assertEquals(expectedValue.hasLatLong, exifInterface.getLatLong(latLong)); in compareWithExpectedValue()
282 assertEquals(expectedValue.latitude, latLong[0], DIFFERENCE_TOLERANCE); in compareWithExpectedValue()
283 assertEquals(expectedValue.longitude, latLong[1], DIFFERENCE_TOLERANCE); in compareWithExpectedValue()
/aosp12/packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
H A DLocationUrlBuilder.java125 String latLong = getFormattedLatLng(location); in getShowMapIntent() local
126 String url = String.format(Locale.US, "geo: %s?q=%s", latLong, latLong); in getShowMapIntent()
/aosp12/packages/apps/Camera2/src/com/android/camera/util/
H A DCameraUtil.java1076 public static void showOnMap(Activity activity, double[] latLong) { in showOnMap() argument
1083 latLong[0], latLong[1]); in showOnMap()
1093 String url = String.format(Locale.ENGLISH, "geo:%f,%f", latLong[0], latLong[1]); in showOnMap()