Home
last modified time | relevance | path

Searched refs:getValueNotNull (Results 1 – 11 of 11) sorted by relevance

/cts/tests/camera/src/android/hardware/camera2/cts/
DCaptureRequestTest.java1160 dynamicBlackLevels[i] = getValueNotNull(result, in dynamicBlackWhiteLevelTestByCamera()
1162 dynamicWhiteLevels[i] = getValueNotNull(result, in dynamicBlackWhiteLevelTestByCamera()
1327 resultDistances[i] = getValueNotNull(result, CaptureResult.LENS_FOCUS_DISTANCE); in focusDistanceTestRepeating()
1328 resultLensStates[i] = getValueNotNull(result, CaptureResult.LENS_STATE); in focusDistanceTestRepeating()
1357 Float focusDistance = getValueNotNull(result, CaptureResult.LENS_FOCUS_DISTANCE); in focusDistanceTestRepeating()
1401 resultDistances[i] = getValueNotNull(result, CaptureResult.LENS_FOCUS_DISTANCE); in focusDistanceTestBurst()
1402 resultLensStates[i] = getValueNotNull(result, CaptureResult.LENS_STATE); in focusDistanceTestBurst()
2170 getValueNotNull(resultsDuringLock[0], CaptureResult.SENSOR_SENSITIVITY); in autoAeMultipleCapturesThenTestLock()
2172 getValueNotNull(resultsDuringLock[0], CaptureResult.SENSOR_EXPOSURE_TIME); in autoAeMultipleCapturesThenTestLock()
2250 long resultExpTimeNs = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in aeManualControlTest()
[all …]
DHeifWriterTest.java22 import static android.hardware.camera2.cts.CameraTestUtils.getValueNotNull;
389 Long exposureTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in validateCaptureResult()
390 Integer sensitivity = getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in validateCaptureResult()
DStillCaptureTest.java985 getValueNotNull(result, CaptureResult.CONTROL_AWB_REGIONS); in takePictureTestByCamera()
1029 getValueNotNull(result, CaptureResult.CONTROL_AE_REGIONS); in takePictureTestByCamera()
1051 getValueNotNull(result, CaptureResult.CONTROL_AF_REGIONS); in takePictureTestByCamera()
1631 (int) (getValueNotNull( in aeCompensationTestByCamera()
1633 getValueNotNull(normalResult, CaptureResult.SENSOR_SENSITIVITY), in aeCompensationTestByCamera()
1634 (int) (getValueNotNull( in aeCompensationTestByCamera()
1636 getValueNotNull(compensatedResult, CaptureResult.SENSOR_SENSITIVITY)); in aeCompensationTestByCamera()
1664 int expTimeUs = (int) (getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME) / 1000); in getExposureValue()
1665 int sensitivity = getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in getExposureValue()
DExtendedCameraCharacteristicsTest.java290 Rect activeRect = CameraTestUtils.getValueNotNull( in testAvailableStreamConfigs()
292 Size pixelArraySize = CameraTestUtils.getValueNotNull( in testAvailableStreamConfigs()
819 Rect activeRect = CameraTestUtils.getValueNotNull( in verifyRecommendedSnapshotConfiguration()
1421 int[] actualCapabilities = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
1440 Rect activeRect = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
1470 boolean haveAeLock = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
1472 boolean haveAwbLock = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
1498 Range[] fpsRanges = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
1770 Size uhrPixelArraySize = CameraTestUtils.getValueNotNull( in testUltraHighResolutionSensorCharacteristics()
2808 int[] capabilities = CameraTestUtils.getValueNotNull( in testConstrainedHighSpeedCapability()
[all …]
DImageReaderTest.java26 import static android.hardware.camera2.cts.CameraTestUtils.getValueNotNull;
1905 getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in bufferFormatLongProcessingTimeTestByCamera()
1907 getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in bufferFormatLongProcessingTimeTestByCamera()
1912 getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME), in bufferFormatLongProcessingTimeTestByCamera()
1920 getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY), in bufferFormatLongProcessingTimeTestByCamera()
1969 Long exposureTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in validateCaptureResult()
1970 Integer sensitivity = getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in validateCaptureResult()
DZoomCaptureTest.java267 Float zoomRatio = CameraTestUtils.getValueNotNull(result, in bufferFormatZoomTestByCamera()
DSurfaceViewPreviewTest.java708 long frameDuration = getValueNotNull(result, CaptureResult.SENSOR_FRAME_DURATION); in verifyPreviewTargetFpsRange()
715 long expTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in verifyPreviewTargetFpsRange()
DRecordingTest.java2622 long prevTS = getValueNotNull(prevResult, CaptureResult.SENSOR_TIMESTAMP);
2626 long currentTS = getValueNotNull(currentResult, CaptureResult.SENSOR_TIMESTAMP);
2631 long nextTS = getValueNotNull(nextResult, CaptureResult.SENSOR_TIMESTAMP);
2700 long prevTS = getValueNotNull(prevResult, CaptureResult.SENSOR_TIMESTAMP);
2704 long currentTS = getValueNotNull(currentResult, CaptureResult.SENSOR_TIMESTAMP);
DMultiResolutionImageReaderTest.java106 int[] capabilities = CameraTestUtils.getValueNotNull( in testMultiResolutionCaptureCharacteristics()
DMultiResolutionReprocessCaptureTest.java103 int[] capabilities = CameraTestUtils.getValueNotNull( in testMultiResolutionReprocessCharacteristics()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java2584 actualRegion = getValueNotNull(result, key); in validate3aRegion()
2943 public static <T> T getValueNotNull(CaptureResult result, CaptureResult.Key<T> key) { in getValueNotNull() method in CameraTestUtils
2953 public static <T> T getValueNotNull(CameraCharacteristics characteristics, in getValueNotNull() method in CameraTestUtils