Home
last modified time | relevance | path

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

/cts/tests/camera/src/android/hardware/camera2/cts/
DCaptureRequestTest.java810 dynamicBlackLevels[i] = getValueNotNull(result, in dynamicBlackWhiteLevelTestByCamera()
812 dynamicWhiteLevels[i] = getValueNotNull(result, in dynamicBlackWhiteLevelTestByCamera()
952 resultDistances[i] = getValueNotNull(result, CaptureResult.LENS_FOCUS_DISTANCE); in focusDistanceTestRepeating()
953 resultLensStates[i] = getValueNotNull(result, CaptureResult.LENS_STATE); in focusDistanceTestRepeating()
980 Float focusDistance = getValueNotNull(result, CaptureResult.LENS_FOCUS_DISTANCE); in focusDistanceTestRepeating()
1024 resultDistances[i] = getValueNotNull(result, CaptureResult.LENS_FOCUS_DISTANCE); in focusDistanceTestBurst()
1025 resultLensStates[i] = getValueNotNull(result, CaptureResult.LENS_STATE); in focusDistanceTestBurst()
1604 getValueNotNull(resultsDuringLock[0], CaptureResult.SENSOR_SENSITIVITY); in autoAeMultipleCapturesThenTestLock()
1606 getValueNotNull(resultsDuringLock[0], CaptureResult.SENSOR_EXPOSURE_TIME); in autoAeMultipleCapturesThenTestLock()
1648 long resultExpTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in aeManualControlTest()
[all …]
DStillCaptureTest.java679 getValueNotNull(result, CaptureResult.CONTROL_AWB_REGIONS); in takePictureTestByCamera()
723 getValueNotNull(result, CaptureResult.CONTROL_AE_REGIONS); in takePictureTestByCamera()
745 getValueNotNull(result, CaptureResult.CONTROL_AF_REGIONS); in takePictureTestByCamera()
1230 (int) (getValueNotNull( in aeCompensationTestByCamera()
1232 getValueNotNull(normalResult, CaptureResult.SENSOR_SENSITIVITY), in aeCompensationTestByCamera()
1233 (int) (getValueNotNull( in aeCompensationTestByCamera()
1235 getValueNotNull(compensatedResult, CaptureResult.SENSOR_SENSITIVITY)); in aeCompensationTestByCamera()
1263 int expTimeUs = (int) (getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME) / 1000); in getExposureValue()
1264 int sensitivity = getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in getExposureValue()
DImageReaderTest.java56 import static android.hardware.camera2.cts.CameraTestUtils.getValueNotNull;
860 getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in bufferFormatLongProcessingTimeTestByCamera()
862 getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in bufferFormatLongProcessingTimeTestByCamera()
867 getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME), in bufferFormatLongProcessingTimeTestByCamera()
875 getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY), in bufferFormatLongProcessingTimeTestByCamera()
915 Long exposureTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in validateCaptureResult()
916 Integer sensitivity = getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in validateCaptureResult()
DExtendedCameraCharacteristicsTest.java176 Rect activeRect = CameraTestUtils.getValueNotNull( in testAvailableStreamConfigs()
504 int[] actualCapabilities = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
523 Rect activeRect = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
563 boolean haveAeLock = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
565 boolean haveAwbLock = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
588 Range[] fpsRanges = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
1153 int[] capabilities = CameraTestUtils.getValueNotNull( in testConstrainedHighSpeedCapability()
1158 CameraTestUtils.getValueNotNull( in testConstrainedHighSpeedCapability()
1254 Rect[] regions = CameraTestUtils.getValueNotNull(c, in testOpticalBlackRegions()
1279 Size size = CameraTestUtils.getValueNotNull(c, in testOpticalBlackRegions()
[all …]
DRecordingTest.java1490 long prevTS = getValueNotNull(prevResult, CaptureResult.SENSOR_TIMESTAMP);
1494 long currentTS = getValueNotNull(currentResult, CaptureResult.SENSOR_TIMESTAMP);
1499 long nextTS = getValueNotNull(nextResult, CaptureResult.SENSOR_TIMESTAMP);
1568 long prevTS = getValueNotNull(prevResult, CaptureResult.SENSOR_TIMESTAMP);
1572 long currentTS = getValueNotNull(currentResult, CaptureResult.SENSOR_TIMESTAMP);
DSurfaceViewPreviewTest.java725 long frameDuration = getValueNotNull(result, CaptureResult.SENSOR_FRAME_DURATION); in verifyPreviewTargetFpsRange()
732 long expTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in verifyPreviewTargetFpsRange()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java1621 public static <T> T getValueNotNull(CaptureResult result, CaptureResult.Key<T> key) { in getValueNotNull() method in CameraTestUtils
1631 public static <T> T getValueNotNull(CameraCharacteristics characteristics, in getValueNotNull() method in CameraTestUtils