Searched refs:allSizes (Results 1 – 3 of 3) sorted by relevance
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/ |
D | ItsUtils.java | 133 Size[] allSizes = null; in getOutputSizes() local 135 allSizes = new Size[normalSizes.length + slowSizes.length]; in getOutputSizes() 136 System.arraycopy(normalSizes, 0, allSizes, 0, in getOutputSizes() 138 System.arraycopy(slowSizes, 0, allSizes, normalSizes.length, in getOutputSizes() 141 allSizes = normalSizes; in getOutputSizes() 143 allSizes = slowSizes; in getOutputSizes() 145 return allSizes; in getOutputSizes()
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
D | CameraTestUtils.java | 963 Size[] allSizes = new Size[availableSizes.length + highResAvailableSizes.length]; in getSupportedSizeForFormat() local 964 System.arraycopy(availableSizes, 0, allSizes, 0, in getSupportedSizeForFormat() 966 System.arraycopy(highResAvailableSizes, 0, allSizes, availableSizes.length, in getSupportedSizeForFormat() 968 availableSizes = allSizes; in getSupportedSizeForFormat() 992 Size[] allSizes = new Size[availableSizes.length + highResAvailableSizes.length]; in getSupportedSizeForClass() local 993 System.arraycopy(availableSizes, 0, allSizes, 0, in getSupportedSizeForClass() 995 System.arraycopy(highResAvailableSizes, 0, allSizes, availableSizes.length, in getSupportedSizeForClass() 997 availableSizes = allSizes; in getSupportedSizeForClass()
|
D | ExtendedCameraCharacteristicsTest.java | 1117 Size[] allSizes = CameraTestUtils.getSupportedSizeForFormat(ImageFormat.PRIVATE, in testConstrainedHighSpeedCapability() local 1120 allSizes != null && allSizes.length > 0); in testConstrainedHighSpeedCapability() 1124 " must be part of normal sizes " + Arrays.toString(allSizes), in testConstrainedHighSpeedCapability() 1125 Arrays.asList(allSizes).contains(size)); in testConstrainedHighSpeedCapability()
|