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.java135 Size[] allSizes = null; in getOutputSizes() local
137 allSizes = new Size[normalSizes.length + slowSizes.length]; in getOutputSizes()
138 System.arraycopy(normalSizes, 0, allSizes, 0, in getOutputSizes()
140 System.arraycopy(slowSizes, 0, allSizes, normalSizes.length, in getOutputSizes()
143 allSizes = normalSizes; in getOutputSizes()
145 allSizes = slowSizes; in getOutputSizes()
147 return allSizes; in getOutputSizes()
/cts/tests/camera/src/android/hardware/camera2/cts/
DCameraTestUtils.java1066 Size[] allSizes = new Size[availableSizes.length + highResAvailableSizes.length]; in getSupportedSizeForFormat() local
1067 System.arraycopy(availableSizes, 0, allSizes, 0, in getSupportedSizeForFormat()
1069 System.arraycopy(highResAvailableSizes, 0, allSizes, availableSizes.length, in getSupportedSizeForFormat()
1071 availableSizes = allSizes; in getSupportedSizeForFormat()
1095 Size[] allSizes = new Size[availableSizes.length + highResAvailableSizes.length]; in getSupportedSizeForClass() local
1096 System.arraycopy(availableSizes, 0, allSizes, 0, in getSupportedSizeForClass()
1098 System.arraycopy(highResAvailableSizes, 0, allSizes, availableSizes.length, in getSupportedSizeForClass()
1100 availableSizes = allSizes; in getSupportedSizeForClass()
DExtendedCameraCharacteristicsTest.java1163 Size[] allSizes = CameraTestUtils.getSupportedSizeForFormat(ImageFormat.PRIVATE, in testConstrainedHighSpeedCapability() local
1166 allSizes != null && allSizes.length > 0); in testConstrainedHighSpeedCapability()
1170 " must be part of normal sizes " + Arrays.toString(allSizes), in testConstrainedHighSpeedCapability()
1171 Arrays.asList(allSizes).contains(size)); in testConstrainedHighSpeedCapability()