Home
last modified time | relevance | path

Searched refs:allSizes (Results 1 – 3 of 3) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
DItsUtils.java157 Size[] allSizes = null; in getOutputSizes() local
159 allSizes = new Size[normalSizes.length + slowSizes.length]; in getOutputSizes()
160 System.arraycopy(normalSizes, 0, allSizes, 0, in getOutputSizes()
162 System.arraycopy(slowSizes, 0, allSizes, normalSizes.length, in getOutputSizes()
165 allSizes = normalSizes; in getOutputSizes()
167 allSizes = slowSizes; in getOutputSizes()
169 return allSizes; in getOutputSizes()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java1732 Size[] allSizes = new Size[availableSizes.length + highResAvailableSizes.length]; in getSupportedSizeForFormat() local
1733 System.arraycopy(availableSizes, 0, allSizes, 0, in getSupportedSizeForFormat()
1735 System.arraycopy(highResAvailableSizes, 0, allSizes, availableSizes.length, in getSupportedSizeForFormat()
1737 availableSizes = allSizes; in getSupportedSizeForFormat()
1761 Size[] allSizes = new Size[availableSizes.length + highResAvailableSizes.length]; in getSupportedSizeForClass() local
1762 System.arraycopy(availableSizes, 0, allSizes, 0, in getSupportedSizeForClass()
1764 System.arraycopy(highResAvailableSizes, 0, allSizes, availableSizes.length, in getSupportedSizeForClass()
1766 availableSizes = allSizes; in getSupportedSizeForClass()
/cts/tests/camera/src/android/hardware/camera2/cts/
DExtendedCameraCharacteristicsTest.java2136 Size[] allSizes = CameraTestUtils.getSupportedSizeForFormat(ImageFormat.PRIVATE, in testConstrainedHighSpeedCapability() local
2139 allSizes != null && allSizes.length > 0); in testConstrainedHighSpeedCapability()
2143 " must be part of normal sizes " + Arrays.toString(allSizes), in testConstrainedHighSpeedCapability()
2144 Arrays.asList(allSizes).contains(size)); in testConstrainedHighSpeedCapability()