Searched refs:allSizes (Results 1 – 3 of 3) sorted by relevance
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/ |
D | ItsUtils.java | 155 Size[] allSizes = null; in getOutputSizes() local 157 allSizes = new Size[normalSizes.length + slowSizes.length]; in getOutputSizes() 158 System.arraycopy(normalSizes, 0, allSizes, 0, in getOutputSizes() 160 System.arraycopy(slowSizes, 0, allSizes, normalSizes.length, in getOutputSizes() 163 allSizes = normalSizes; in getOutputSizes() 165 allSizes = slowSizes; in getOutputSizes() 167 return allSizes; in getOutputSizes()
|
/cts/tests/camera/utils/src/android/hardware/camera2/cts/ |
D | CameraTestUtils.java | 1187 Size[] allSizes = new Size[availableSizes.length + highResAvailableSizes.length]; in getSupportedSizeForFormat() local 1188 System.arraycopy(availableSizes, 0, allSizes, 0, in getSupportedSizeForFormat() 1190 System.arraycopy(highResAvailableSizes, 0, allSizes, availableSizes.length, in getSupportedSizeForFormat() 1192 availableSizes = allSizes; in getSupportedSizeForFormat() 1216 Size[] allSizes = new Size[availableSizes.length + highResAvailableSizes.length]; in getSupportedSizeForClass() local 1217 System.arraycopy(availableSizes, 0, allSizes, 0, in getSupportedSizeForClass() 1219 System.arraycopy(highResAvailableSizes, 0, allSizes, availableSizes.length, in getSupportedSizeForClass() 1221 availableSizes = allSizes; in getSupportedSizeForClass()
|
/cts/tests/camera/src/android/hardware/camera2/cts/ |
D | ExtendedCameraCharacteristicsTest.java | 1957 Size[] allSizes = CameraTestUtils.getSupportedSizeForFormat(ImageFormat.PRIVATE, in testConstrainedHighSpeedCapability() local 1960 allSizes != null && allSizes.length > 0); in testConstrainedHighSpeedCapability() 1964 " must be part of normal sizes " + Arrays.toString(allSizes), in testConstrainedHighSpeedCapability() 1965 Arrays.asList(allSizes).contains(size)); in testConstrainedHighSpeedCapability()
|