Searched refs:apertures (Results 1 – 3 of 3) sorted by relevance
/cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/ |
D | StaticMetadata.java | 744 float[] apertures = getValueFromKeyNonNull(key); in getAvailableAperturesChecked() local 746 checkTrueForKey(key, "Array should contain at least one element", apertures.length >= 1); in getAvailableAperturesChecked() 748 for (int i = 0; i < apertures.length; i++) { in getAvailableAperturesChecked() 750 String.format("apertures[%d] %f should be positive.", i, apertures[i]), in getAvailableAperturesChecked() 751 apertures[i] > 0); in getAvailableAperturesChecked() 753 checkElementDistinct(key, Arrays.asList(CameraTestUtils.toObject(apertures))); in getAvailableAperturesChecked() 755 return apertures; in getAvailableAperturesChecked()
|
/cts/tests/camera/utils/src/android/hardware/camera2/cts/ |
D | CameraTestUtils.java | 3624 float[] apertures = physicalStaticInfo.getAvailableAperturesChecked(); in getAvailableAperturesForResult() local 3625 for (float aperture: apertures) { in getAvailableAperturesForResult() 3805 Set<Float> apertures = getAvailableAperturesForResult( in verifyJpegExifExtraTags() local 3810 getClosestValueInSet(apertures, apertureValue), in verifyJpegExifExtraTags() 3814 validateAperture(result, apertures, collector), in verifyJpegExifExtraTags()
|
/cts/tests/camera/src/android/hardware/camera2/cts/ |
D | ExtendedCameraCharacteristicsTest.java | 3041 float[] apertures = c.get(CameraCharacteristics.LENS_INFO_AVAILABLE_APERTURES); in testLogicalCameraCharacteristics() local 3042 for (int j = 0; j < apertures.length-1; j++) { in testLogicalCameraCharacteristics() 3044 apertures[j] < apertures[j+1]); in testLogicalCameraCharacteristics()
|