Home
last modified time | relevance | path

Searched refs:expectNotNull (Results 1 – 6 of 6) sorted by relevance

/cts/tests/tests/hardware/src/android/hardware/camera2/cts/
DCameraTestUtils.java1999 collector.expectNotNull("Exif TAG_EXPOSURE_TIME shouldn't be null", exposureTime); in verifyJpegExifExtraTags()
2015 collector.expectNotNull("Exif TAG_APERTURE shouldn't be null", exifAperture); in verifyJpegExifExtraTags()
2034 collector.expectNotNull("Exif TAG_FLASH shouldn't be null", flash); in verifyJpegExifExtraTags()
2041 collector.expectNotNull("Exif TAG_WHITE_BALANCE shouldn't be null", whiteBalance); in verifyJpegExifExtraTags()
2061 collector.expectNotNull("Exif TAG_DATETIME_DIGITIZED shouldn't be null", digitizedTime); in verifyJpegExifExtraTags()
2064 collector.expectNotNull("Exif TAG_DATETIME shouldn't be null", expectedDateTime); in verifyJpegExifExtraTags()
DRecordingTest.java354 mCollector.expectNotNull("Unable to find the fixed frame rate fps range for " + in slowMotionRecording()
DStillCaptureTest.java896 mCollector.expectNotNull("AvailableHotPixelMapModes must not be null", in verifyRawCaptureResult()
DCaptureRequestTest.java1406 mCollector.expectNotNull("Face rectangle shouldn't be null", face.getBounds());
/cts/tests/tests/hardware/src/android/hardware/cts/
DCameraTest.java943 passedSoFar = expectNotNull("Exif TAG_EXPOSURE_TIME is null!", logBuf, exposureTime); in checkExtraExifTagsSucceeds()
954 passedSoFar = expectNotNull("Exif TAG_APERTURE is null!", logBuf, aperture); in checkExtraExifTagsSucceeds()
964 passedSoFar = expectNotNull("Exif TAG_FLASH is null!", logBuf, flash); in checkExtraExifTagsSucceeds()
969 passedSoFar = expectNotNull("Exif TAG_WHITE_BALANCE is null!", logBuf, whiteBalance); in checkExtraExifTagsSucceeds()
974 passedSoFar = expectNotNull("Exif TAG_MAKE is null!", logBuf, make); in checkExtraExifTagsSucceeds()
984 passedSoFar = expectNotNull("Exif TAG_MODEL is null!", logBuf, model); in checkExtraExifTagsSucceeds()
999 passedSoFar = expectNotNull("Exif TAG_DATETIME_DIGITIZED is null!", logBuf, digitizedTime); in checkExtraExifTagsSucceeds()
1002 passedSoFar = expectNotNull("Exif TAG_DATETIME is null!", logBuf, datetime); in checkExtraExifTagsSucceeds()
1045 private boolean expectNotNull(String msg, StringBuffer logBuffer, Object obj) in expectNotNull() method in CameraTest
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
DCameraErrorCollector.java593 public void expectNotNull(String msg, Object obj) { in expectNotNull() method in CameraErrorCollector