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.java187 Size[] allSizes = null; in getOutputSizes() local
189 allSizes = new Size[normalSizes.length + slowSizes.length]; in getOutputSizes()
190 System.arraycopy(normalSizes, 0, allSizes, 0, normalSizes.length); in getOutputSizes()
191 System.arraycopy(slowSizes, 0, allSizes, normalSizes.length, slowSizes.length); in getOutputSizes()
193 allSizes = normalSizes; in getOutputSizes()
195 allSizes = slowSizes; in getOutputSizes()
197 return allSizes; in getOutputSizes()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java2018 Size[] allSizes = new Size[availableSizes.length + highResAvailableSizes.length]; in getSupportedSizeForFormat() local
2019 System.arraycopy(availableSizes, 0, allSizes, 0, in getSupportedSizeForFormat()
2021 System.arraycopy(highResAvailableSizes, 0, allSizes, availableSizes.length, in getSupportedSizeForFormat()
2023 availableSizes = allSizes; in getSupportedSizeForFormat()
2047 Size[] allSizes = new Size[availableSizes.length + highResAvailableSizes.length]; in getSupportedSizeForClass() local
2048 System.arraycopy(availableSizes, 0, allSizes, 0, in getSupportedSizeForClass()
2050 System.arraycopy(highResAvailableSizes, 0, allSizes, availableSizes.length, in getSupportedSizeForClass()
2052 availableSizes = allSizes; in getSupportedSizeForClass()
/cts/tests/camera/src/android/hardware/camera2/cts/
DExtendedCameraCharacteristicsTest.java2817 Size[] allSizes = CameraTestUtils.getSupportedSizeForFormat(ImageFormat.PRIVATE, in testConstrainedHighSpeedCapability() local
2820 allSizes != null && allSizes.length > 0); in testConstrainedHighSpeedCapability()
2824 " must be part of normal sizes " + Arrays.toString(allSizes), in testConstrainedHighSpeedCapability()
2825 Arrays.asList(allSizes).contains(size)); in testConstrainedHighSpeedCapability()