Searched refs:parseOptionalOrientation (Results 1 – 2 of 2) sorted by relevance
30 import static com.android.providers.media.scan.ModernMediaScanner.parseOptionalOrientation;191 (int) parseOptionalOrientation(ExifInterface.ORIENTATION_NORMAL).get()); in testParseOptionalOrientation()193 (int) parseOptionalOrientation(ExifInterface.ORIENTATION_ROTATE_90).get()); in testParseOptionalOrientation()195 (int) parseOptionalOrientation(ExifInterface.ORIENTATION_ROTATE_180).get()); in testParseOptionalOrientation()197 (int) parseOptionalOrientation(ExifInterface.ORIENTATION_ROTATE_270).get()); in testParseOptionalOrientation()200 (int) parseOptionalOrientation(ExifInterface.ORIENTATION_FLIP_HORIZONTAL).get()); in testParseOptionalOrientation()202 (int) parseOptionalOrientation(ExifInterface.ORIENTATION_TRANSPOSE).get()); in testParseOptionalOrientation()204 (int) parseOptionalOrientation(ExifInterface.ORIENTATION_FLIP_VERTICAL).get()); in testParseOptionalOrientation()206 (int) parseOptionalOrientation(ExifInterface.ORIENTATION_TRANSVERSE).get()); in testParseOptionalOrientation()
1399 parseOptionalOrientation(exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, in scanItemImage()1541 static @NonNull Optional<Integer> parseOptionalOrientation(int orientation) { in parseOptionalOrientation() method in ModernMediaScanner