Home
last modified time | relevance | path

Searched refs:exposureTime (Results 1 – 7 of 7) sorted by relevance

/cts/tests/camera/src/android/hardware/camera2/cts/
DReadoutTimestampTest.java188 Long exposureTime = results.get(i).get(CaptureResult.SENSOR_EXPOSURE_TIME); in testReadoutTimestamp() local
189 if (exposureTime == null) { in testReadoutTimestamp()
206 + ") should be >= exposureTime (" + exposureTime + ")", in testReadoutTimestamp()
208 exposureTime); in testReadoutTimestamp()
DHeifWriterTest.java389 Long exposureTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in validateCaptureResult() local
395 exposureTime, in validateCaptureResult()
DCaptureRequestTest.java3881 private long getAntiFlickeringExposureTime(int flickeringMode, long exposureTime) {
3890 if (exposureTime <= flickeringBoundary) {
3891 return exposureTime;
3895 long correctedExpTime = exposureTime + (flickeringBoundary / 2);
DImageReaderTest.java1969 Long exposureTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in validateCaptureResult() local
1975 exposureTime, in validateCaptureResult()
/cts/tests/tests/media/misc/src/android/media/misc/cts/
DExifInterfaceTest.java155 public final float exposureTime; field in ExifInterfaceTest.ExpectedValue
215 exposureTime = typedArray.getFloat(index++, 0f); in ExpectedValue()
377 assertFloatTag(exifInterface, ExifInterface.TAG_EXPOSURE_TIME, expectedValue.exposureTime); in compareWithExpectedValue()
937 String exposureTime = "1/8"; in testSetAttribute() local
938 exif.setAttribute(ExifInterface.TAG_APERTURE_VALUE, exposureTime); in testSetAttribute()
939 assertEquals(exposureTime, exif.getAttribute(ExifInterface.TAG_APERTURE_VALUE)); in testSetAttribute()
/cts/tests/camera/src/android/hardware/cts/
DCameraTest.java1071 String exposureTime = exif.getAttribute(ExifInterface.TAG_EXPOSURE_TIME); in checkExtraExifTagsSucceeds() local
1072 passedSoFar = expectNotNull("Exif TAG_EXPOSURE_TIME is null!", logBuf, exposureTime); in checkExtraExifTagsSucceeds()
1074 double exposureTimeValue = Double.parseDouble(exposureTime); in checkExtraExifTagsSucceeds()
1075 failureMsg = "Exif exposure time " + exposureTime + " should be a positive value"; in checkExtraExifTagsSucceeds()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java3786 String exposureTime = exif.getAttribute(ExifInterface.TAG_EXPOSURE_TIME); in verifyJpegExifExtraTags() local
3787 collector.expectNotNull("Exif TAG_EXPOSURE_TIME shouldn't be null", exposureTime); in verifyJpegExifExtraTags()
3789 if (exposureTime != null) { in verifyJpegExifExtraTags()
3790 double exposureTimeValue = Double.parseDouble(exposureTime); in verifyJpegExifExtraTags()