Searched refs:bigEnough (Results 1 – 5 of 5) sorted by relevance
787 val bigEnough = ArrayList<Size>() in chooseOptimalSize() constant796 bigEnough.add(option) in chooseOptimalSize()805 if (bigEnough.size > 0) { in chooseOptimalSize()806 return Collections.min(bigEnough, CompareSizesByArea()) in chooseOptimalSize()
256 List<Size> bigEnough = new ArrayList<>(); in chooseOptimalSize() local262 bigEnough.add(option); in chooseOptimalSize()267 if (bigEnough.size() > 0) { in chooseOptimalSize()268 return Collections.min(bigEnough, new CompareSizesByArea()); in chooseOptimalSize()
612 val bigEnough = choices.filter { in chooseOptimalSize() constant616 return if (bigEnough.isNotEmpty()) { in chooseOptimalSize()617 Collections.min(bigEnough, CompareSizesByArea()) in chooseOptimalSize()
388 List<Size> bigEnough = new ArrayList<>(); in chooseOptimalSize() local398 bigEnough.add(option); in chooseOptimalSize()407 if (bigEnough.size() > 0) { in chooseOptimalSize()408 return Collections.min(bigEnough, new CompareSizesByArea()); in chooseOptimalSize()
1637 List<Size> bigEnough = new ArrayList<>();1647 bigEnough.add(option);1656 if (bigEnough.size() > 0) {1657 return Collections.min(bigEnough, new CompareSizesByArea());