Home
last modified time | relevance | path

Searched refs:notBigEnough (Results 1 – 3 of 3) sorted by relevance

/developers/samples/android/media/Camera2Basic/kotlinApp/Application/src/main/java/com/example/android/camera2basic/
DCamera2BasicFragment.kt789 val notBigEnough = ArrayList<Size>() in chooseOptimalSize() constant
798 notBigEnough.add(option) in chooseOptimalSize()
807 } else if (notBigEnough.size > 0) { in chooseOptimalSize()
808 return Collections.max(notBigEnough, CompareSizesByArea()) in chooseOptimalSize()
/developers/samples/android/media/Camera2Basic/Application/src/main/java/com/example/android/camera2basic/
DCamera2BasicFragment.java390 List<Size> notBigEnough = new ArrayList<>(); in chooseOptimalSize() local
400 notBigEnough.add(option); in chooseOptimalSize()
409 } else if (notBigEnough.size() > 0) { in chooseOptimalSize()
410 return Collections.max(notBigEnough, new CompareSizesByArea()); in chooseOptimalSize()
/developers/samples/android/media/Camera2Raw/Application/src/main/java/com/example/android/camera2raw/
DCamera2RawFragment.java1639 List<Size> notBigEnough = new ArrayList<>();
1649 notBigEnough.add(option);
1658 } else if (notBigEnough.size() > 0) {
1659 return Collections.max(notBigEnough, new CompareSizesByArea());