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.java899 dynamicBlackLevels[i] = getValueNotNull(result, in dynamicBlackWhiteLevelTestByCamera()
901 dynamicWhiteLevels[i] = getValueNotNull(result, in dynamicBlackWhiteLevelTestByCamera()
1041 resultDistances[i] = getValueNotNull(result, CaptureResult.LENS_FOCUS_DISTANCE); in focusDistanceTestRepeating()
1042 resultLensStates[i] = getValueNotNull(result, CaptureResult.LENS_STATE); in focusDistanceTestRepeating()
1069 Float focusDistance = getValueNotNull(result, CaptureResult.LENS_FOCUS_DISTANCE); in focusDistanceTestRepeating()
1113 resultDistances[i] = getValueNotNull(result, CaptureResult.LENS_FOCUS_DISTANCE); in focusDistanceTestBurst()
1114 resultLensStates[i] = getValueNotNull(result, CaptureResult.LENS_STATE); in focusDistanceTestBurst()
1694 getValueNotNull(resultsDuringLock[0], CaptureResult.SENSOR_SENSITIVITY); in autoAeMultipleCapturesThenTestLock()
1696 getValueNotNull(resultsDuringLock[0], CaptureResult.SENSOR_EXPOSURE_TIME); in autoAeMultipleCapturesThenTestLock()
1745 long resultExpTimeNs = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in aeManualControlTest()
[all …]
DStillCaptureTest.java768 getValueNotNull(result, CaptureResult.CONTROL_AWB_REGIONS); in takePictureTestByCamera()
812 getValueNotNull(result, CaptureResult.CONTROL_AE_REGIONS); in takePictureTestByCamera()
834 getValueNotNull(result, CaptureResult.CONTROL_AF_REGIONS); in takePictureTestByCamera()
1319 (int) (getValueNotNull( in aeCompensationTestByCamera()
1321 getValueNotNull(normalResult, CaptureResult.SENSOR_SENSITIVITY), in aeCompensationTestByCamera()
1322 (int) (getValueNotNull( in aeCompensationTestByCamera()
1324 getValueNotNull(compensatedResult, CaptureResult.SENSOR_SENSITIVITY)); in aeCompensationTestByCamera()
1352 int expTimeUs = (int) (getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME) / 1000); in getExposureValue()
1353 int sensitivity = getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in getExposureValue()
DImageReaderTest.java58 import static android.hardware.camera2.cts.CameraTestUtils.getValueNotNull;
910 getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in bufferFormatLongProcessingTimeTestByCamera()
912 getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in bufferFormatLongProcessingTimeTestByCamera()
917 getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME), in bufferFormatLongProcessingTimeTestByCamera()
925 getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY), in bufferFormatLongProcessingTimeTestByCamera()
965 Long exposureTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in validateCaptureResult()
966 Integer sensitivity = getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in validateCaptureResult()
DExtendedCameraCharacteristicsTest.java187 Rect activeRect = CameraTestUtils.getValueNotNull( in testAvailableStreamConfigs()
576 int[] actualCapabilities = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
595 Rect activeRect = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
635 boolean haveAeLock = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
637 boolean haveAwbLock = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
660 Range[] fpsRanges = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
1250 int[] capabilities = CameraTestUtils.getValueNotNull( in testConstrainedHighSpeedCapability()
1255 CameraTestUtils.getValueNotNull( in testConstrainedHighSpeedCapability()
1351 Rect[] regions = CameraTestUtils.getValueNotNull(c, in testOpticalBlackRegions()
1376 Size size = CameraTestUtils.getValueNotNull(c, in testOpticalBlackRegions()
[all …]
DRecordingTest.java1766 long prevTS = getValueNotNull(prevResult, CaptureResult.SENSOR_TIMESTAMP);
1770 long currentTS = getValueNotNull(currentResult, CaptureResult.SENSOR_TIMESTAMP);
1775 long nextTS = getValueNotNull(nextResult, CaptureResult.SENSOR_TIMESTAMP);
1844 long prevTS = getValueNotNull(prevResult, CaptureResult.SENSOR_TIMESTAMP);
1848 long currentTS = getValueNotNull(currentResult, CaptureResult.SENSOR_TIMESTAMP);
DSurfaceViewPreviewTest.java727 long frameDuration = getValueNotNull(result, CaptureResult.SENSOR_FRAME_DURATION); in verifyPreviewTargetFpsRange()
734 long expTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in verifyPreviewTargetFpsRange()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java1675 public static <T> T getValueNotNull(CaptureResult result, CaptureResult.Key<T> key) { in getValueNotNull() method in CameraTestUtils
1685 public static <T> T getValueNotNull(CameraCharacteristics characteristics, in getValueNotNull() method in CameraTestUtils