Home
last modified time | relevance | path

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

/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java2276 collector.expectNotNull("Exif TAG_EXPOSURE_TIME shouldn't be null", exposureTime); in verifyJpegExifExtraTags()
2292 collector.expectNotNull("Exif TAG_APERTURE shouldn't be null", exifAperture); in verifyJpegExifExtraTags()
2337 collector.expectNotNull("Exif TAG_MAKE is null", make); in verifyJpegExifExtraTags()
2341 collector.expectNotNull("Exif TAG_MODEL is nuill", model); in verifyJpegExifExtraTags()
2350 collector.expectNotNull("Exif TAG_FLASH shouldn't be null", flash); in verifyJpegExifExtraTags()
2357 collector.expectNotNull("Exif TAG_WHITE_BALANCE shouldn't be null", whiteBalance); in verifyJpegExifExtraTags()
2361 collector.expectNotNull("Exif TAG_DATETIME_DIGITIZED shouldn't be null", digitizedTime); in verifyJpegExifExtraTags()
2364 collector.expectNotNull("Exif TAG_DATETIME shouldn't be null", expectedDateTime); in verifyJpegExifExtraTags()
2398 collector.expectNotNull("Exif TAG_GPS_DATESTAMP shouldn't be null", gpsDatestamp); in verifyJpegExifExtraTags()
2400 collector.expectNotNull("Exif TAG_GPS_TIMESTAMP shouldn't be null", gpsTimestamp); in verifyJpegExifExtraTags()
/cts/tests/camera/src/android/hardware/cts/
DCameraTest.java1002 passedSoFar = expectNotNull("Exif TAG_EXPOSURE_TIME is null!", logBuf, exposureTime); in checkExtraExifTagsSucceeds()
1013 passedSoFar = expectNotNull("Exif TAG_APERTURE is null!", logBuf, aperture); in checkExtraExifTagsSucceeds()
1023 passedSoFar = expectNotNull("Exif TAG_FLASH is null!", logBuf, flash); in checkExtraExifTagsSucceeds()
1028 passedSoFar = expectNotNull("Exif TAG_WHITE_BALANCE is null!", logBuf, whiteBalance); in checkExtraExifTagsSucceeds()
1033 passedSoFar = expectNotNull("Exif TAG_MAKE is null!", logBuf, make); in checkExtraExifTagsSucceeds()
1043 passedSoFar = expectNotNull("Exif TAG_MODEL is null!", logBuf, model); in checkExtraExifTagsSucceeds()
1058 passedSoFar = expectNotNull("Exif TAG_DATETIME_DIGITIZED is null!", logBuf, digitizedTime); in checkExtraExifTagsSucceeds()
1061 passedSoFar = expectNotNull("Exif TAG_DATETIME is null!", logBuf, datetime); in checkExtraExifTagsSucceeds()
1104 private boolean expectNotNull(String msg, StringBuffer logBuffer, Object obj) in expectNotNull() method in CameraTest
/cts/tests/camera/src/android/hardware/camera2/cts/
DRecordingTest.java337 mCollector.expectNotNull("Unable to find the fixed frame rate fps range for " + in testAbandonedHighSpeedRequest()
623 mCollector.expectNotNull("Unable to find the fixed frame rate fps range for " + in slowMotionRecording()
DStillCaptureTest.java1125 mCollector.expectNotNull("AvailableHotPixelMapModes must not be null", in verifyRawCaptureResult()
DCaptureRequestTest.java1881 mCollector.expectNotNull("Face rectangle shouldn't be null", face.getBounds());
/cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
DCameraErrorCollector.java583 public void expectNotNull(String msg, Object obj) { in expectNotNull() method in CameraErrorCollector