Searched refs:fastSizeList (Results 1 – 1 of 1) sorted by relevance
1529 Size[] fastSizeList = null; in getAvailableSizesForFormatChecked() local1532 fastSizeList = config.getOutputSizes(format); in getAvailableSizesForFormatChecked()1537 if (fastSizeList != null && slowSizeList != null) { in getAvailableSizesForFormatChecked()1538 sizes = new Size[slowSizeList.length + fastSizeList.length]; in getAvailableSizesForFormatChecked()1539 System.arraycopy(fastSizeList, 0, sizes, 0, fastSizeList.length); in getAvailableSizesForFormatChecked()1540 … System.arraycopy(slowSizeList, 0, sizes, fastSizeList.length, slowSizeList.length); in getAvailableSizesForFormatChecked()1541 } else if (fastSizeList != null) { in getAvailableSizesForFormatChecked()1542 sizes = fastSizeList; in getAvailableSizesForFormatChecked()