Home
last modified time | relevance | path

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

/cts/tests/tests/hardware/src/android/hardware/camera2/cts/
DCaptureRequestTest.java705 Float focusDistance = getValueNotNull(result, CaptureResult.LENS_FOCUS_DISTANCE); in focusDistanceTestByCamera()
742 Float resultDistance = getValueNotNull(result, CaptureResult.LENS_FOCUS_DISTANCE); in verifyFocusDistanceControl()
1228 getValueNotNull(resultsDuringLock[0], CaptureResult.SENSOR_SENSITIVITY); in autoAeMultipleCapturesThenTestLock()
1230 getValueNotNull(resultsDuringLock[0], CaptureResult.SENSOR_EXPOSURE_TIME); in autoAeMultipleCapturesThenTestLock()
1272 long resultExpTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in aeManualControlTest()
1273 int resultSensitivity = getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in aeManualControlTest()
1543 TonemapCurve tc = getValueNotNull(result, CaptureResult.TONEMAP_CURVE);
1645 getValueNotNull(result, CaptureResult.COLOR_CORRECTION_GAINS);
1647 getValueNotNull(result, CaptureResult.COLOR_CORRECTION_TRANSFORM);
1654 RggbChannelVector gains = getValueNotNull(result, CaptureResult.COLOR_CORRECTION_GAINS);
[all …]
DImageReaderTest.java52 import static android.hardware.camera2.cts.CameraTestUtils.getValueNotNull;
781 getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in bufferFormatLongProcessingTimeTestByCamera()
783 getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in bufferFormatLongProcessingTimeTestByCamera()
788 getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME), in bufferFormatLongProcessingTimeTestByCamera()
796 getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY), in bufferFormatLongProcessingTimeTestByCamera()
828 Long exposureTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in validateCaptureResult()
829 Integer sensitivity = getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in validateCaptureResult()
DStillCaptureTest.java549 getValueNotNull(result, CaptureResult.CONTROL_AWB_REGIONS); in takePictureTestByCamera()
593 getValueNotNull(result, CaptureResult.CONTROL_AE_REGIONS); in takePictureTestByCamera()
615 getValueNotNull(result, CaptureResult.CONTROL_AF_REGIONS); in takePictureTestByCamera()
1089 (int) (getValueNotNull( in aeCompensationTestByCamera()
1091 getValueNotNull(normalResult, CaptureResult.SENSOR_SENSITIVITY), in aeCompensationTestByCamera()
1092 (int) (getValueNotNull( in aeCompensationTestByCamera()
1094 getValueNotNull(compensatedResult, CaptureResult.SENSOR_SENSITIVITY)); in aeCompensationTestByCamera()
1122 int expTimeUs = (int) (getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME) / 1000); in getExposureValue()
1123 int sensitivity = getValueNotNull(result, CaptureResult.SENSOR_SENSITIVITY); in getExposureValue()
DExtendedCameraCharacteristicsTest.java174 Rect activeRect = CameraTestUtils.getValueNotNull( in testAvailableStreamConfigs()
484 int[] actualCapabilities = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
503 Rect activeRect = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
532 boolean haveAeLock = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
534 boolean haveAwbLock = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
557 Range[] fpsRanges = CameraTestUtils.getValueNotNull( in testStaticBurstCharacteristics()
1108 int[] capabilities = CameraTestUtils.getValueNotNull( in testConstrainedHighSpeedCapability()
1113 CameraTestUtils.getValueNotNull( in testConstrainedHighSpeedCapability()
DRecordingTest.java1240 long prevTS = getValueNotNull(prevResult, CaptureResult.SENSOR_TIMESTAMP);
1244 long currentTS = getValueNotNull(currentResult, CaptureResult.SENSOR_TIMESTAMP);
1249 long nextTS = getValueNotNull(nextResult, CaptureResult.SENSOR_TIMESTAMP);
1318 long prevTS = getValueNotNull(prevResult, CaptureResult.SENSOR_TIMESTAMP);
1322 long currentTS = getValueNotNull(currentResult, CaptureResult.SENSOR_TIMESTAMP);
DSurfaceViewPreviewTest.java376 long frameDuration = getValueNotNull(result, CaptureResult.SENSOR_FRAME_DURATION); in verifyPreviewTargetFpsRange()
383 long expTime = getValueNotNull(result, CaptureResult.SENSOR_EXPOSURE_TIME); in verifyPreviewTargetFpsRange()
DCameraTestUtils.java1454 public static <T> T getValueNotNull(CaptureResult result, CaptureResult.Key<T> key) { in getValueNotNull() method in CameraTestUtils
1464 public static <T> T getValueNotNull(CameraCharacteristics characteristics, in getValueNotNull() method in CameraTestUtils