Searched refs:latLong (Results 1 – 5 of 5) sorted by relevance
/cts/hostsidetests/scopedstorage/device/src/android/scopedstorage/cts/device/ |
D | RedactUriDeviceTest.java | 504 float[] latLong = new float[]{0, 0}; in assertUriIsUnredacted() local 505 exifInterface.getLatLong(latLong); in assertUriIsUnredacted() 506 assertNotEquals(latLong[0], 0); in assertUriIsUnredacted() 507 assertNotEquals(latLong[1], 0); in assertUriIsUnredacted() 512 float[] latLong = new float[]{0, 0}; in assertUriIsRedacted() local 513 redactedExifInf.getLatLong(latLong); in assertUriIsRedacted() 514 assertEquals(latLong[0], 0.0, 0.0); in assertUriIsRedacted() 515 assertEquals(latLong[1], 0.0, 0.0); in assertUriIsRedacted()
|
/cts/tests/tests/media/src/android/media/cts/ |
D | ExifInterfaceTest.java | 250 float[] latLong = new float[2]; in printExifTagsAndValues() local 251 if (exifInterface.getLatLong(latLong)) { in printExifTagsAndValues() 252 Log.v(TAG, fileName + " Latitude = " + latLong[0]); in printExifTagsAndValues() 253 Log.v(TAG, fileName + " Longitude = " + latLong[1]); in printExifTagsAndValues() 308 float[] latLong = new float[2]; in compareWithExpectedValue() local 309 assertEquals(expectedValue.hasLatLong, exifInterface.getLatLong(latLong)); in compareWithExpectedValue() 318 assertEquals(expectedValue.latitude, latLong[0], DIFFERENCE_TOLERANCE); in compareWithExpectedValue() 319 assertEquals(expectedValue.longitude, latLong[1], DIFFERENCE_TOLERANCE); in compareWithExpectedValue()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/intents/ |
D | CameraIntentsActivity.java | 484 float[] latLong = new float[2]; in handleIntentPictureResult() local 485 if (exif.getLatLong(latLong)) { in handleIntentPictureResult()
|
/cts/tests/camera/src/android/hardware/camera2/cts/ |
D | DngCreatorTest.java | 415 float[] latLong = new float[2]; in testSingleImageThumbnail() local 416 assertTrue(exifInterface.getLatLong(latLong)); in testSingleImageThumbnail() 417 assertEquals(GPS_LATITUDE, latLong[0], GPS_DIFFERENCE_TOLERANCE); in testSingleImageThumbnail() 418 assertEquals(GPS_LONGITUDE, latLong[1], GPS_DIFFERENCE_TOLERANCE); in testSingleImageThumbnail()
|
/cts/tests/camera/src/android/hardware/cts/ |
D | CameraTest.java | 1227 float[] latLong = new float[2]; in testGpsExifValues() local 1228 assertTrue(exif.getLatLong(latLong)); in testGpsExifValues() 1229 assertEquals((float)latitude, latLong[0], 0.0001f); in testGpsExifValues() local 1230 assertEquals((float)longitude, latLong[1], 0.0001f); in testGpsExifValues() local
|