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.java140 Size[] allSizes = null; in getOutputSizes() local
142 allSizes = new Size[normalSizes.length + slowSizes.length]; in getOutputSizes()
143 System.arraycopy(normalSizes, 0, allSizes, 0, in getOutputSizes()
145 System.arraycopy(slowSizes, 0, allSizes, normalSizes.length, in getOutputSizes()
148 allSizes = normalSizes; in getOutputSizes()
150 allSizes = slowSizes; in getOutputSizes()
152 return allSizes; in getOutputSizes()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java1147 Size[] allSizes = new Size[availableSizes.length + highResAvailableSizes.length]; in getSupportedSizeForFormat() local
1148 System.arraycopy(availableSizes, 0, allSizes, 0, in getSupportedSizeForFormat()
1150 System.arraycopy(highResAvailableSizes, 0, allSizes, availableSizes.length, in getSupportedSizeForFormat()
1152 availableSizes = allSizes; in getSupportedSizeForFormat()
1176 Size[] allSizes = new Size[availableSizes.length + highResAvailableSizes.length]; in getSupportedSizeForClass() local
1177 System.arraycopy(availableSizes, 0, allSizes, 0, in getSupportedSizeForClass()
1179 System.arraycopy(highResAvailableSizes, 0, allSizes, availableSizes.length, in getSupportedSizeForClass()
1181 availableSizes = allSizes; in getSupportedSizeForClass()
/cts/tests/camera/src/android/hardware/camera2/cts/
DExtendedCameraCharacteristicsTest.java1259 Size[] allSizes = CameraTestUtils.getSupportedSizeForFormat(ImageFormat.PRIVATE, in testConstrainedHighSpeedCapability() local
1262 allSizes != null && allSizes.length > 0); in testConstrainedHighSpeedCapability()
1266 " must be part of normal sizes " + Arrays.toString(allSizes), in testConstrainedHighSpeedCapability()
1267 Arrays.asList(allSizes).contains(size)); in testConstrainedHighSpeedCapability()