Home | History | Annotate | Download | only in util

Lines Matching refs:sizes

151     public static Size[] convert(android.util.Size[] sizes) {
152 Size[] converted = new Size[sizes.length];
153 for (int i = 0; i < sizes.length; ++i) {
154 converted[i] = new Size(sizes[i].getWidth(), sizes[i].getHeight());
159 public static List<Size> convert(List<com.android.ex.camera2.portability.Size> sizes) {
160 ArrayList<Size> converted = new ArrayList<>(sizes.size());
161 for (com.android.ex.camera2.portability.Size size : sizes) {
170 * @param sizes List of this class to encode.
173 public static String listToString(List<Size> sizes) {
175 for (Size s : sizes) {
216 * sizes are both portrait *and* landscape.
224 * sizes are both portrait *and* landscape.