Home
last modified time | relevance | path

Searched refs:focalLengths (Results 1 – 2 of 2) sorted by relevance

/cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
DStaticMetadata.java592 float[] focalLengths = getValueFromKeyNonNull(key); in getAvailableFocalLengthsChecked() local
594 checkTrueForKey(key, "Array should contain at least one element", focalLengths.length >= 1); in getAvailableFocalLengthsChecked()
596 for (int i = 0; i < focalLengths.length; i++) { in getAvailableFocalLengthsChecked()
598 String.format("focalLength[%d] %f should be positive.", i, focalLengths[i]), in getAvailableFocalLengthsChecked()
599 focalLengths[i] > 0); in getAvailableFocalLengthsChecked()
601 checkElementDistinct(key, Arrays.asList(CameraTestUtils.toObject(focalLengths))); in getAvailableFocalLengthsChecked()
603 return focalLengths; in getAvailableFocalLengthsChecked()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java2056 float[] focalLengths = staticInfo.getAvailableFocalLengthsChecked(); in validateFocalLength() local
2061 Arrays.asList(CameraTestUtils.toObject(focalLengths)); in validateFocalLength()
2206 float[] focalLengths = staticInfo.getAvailableFocalLengthsChecked(); in verifyJpegExifExtraTags() local
2209 getClosestValueInArray(focalLengths, exifFocalLength), in verifyJpegExifExtraTags()