Home | History | Annotate | Download | only in subscaleview

Lines Matching refs:sourceUri

1546                 String sourceUri = source.toString();
1556 int exifOrientation = view.getExifOrientation(context, sourceUri);
1731 String sourceUri = source.toString();
1738 return view.getExifOrientation(context, sourceUri);
1828 private int getExifOrientation(Context context, String sourceUri) {
1830 if (sourceUri.startsWith(ContentResolver.SCHEME_CONTENT)) {
1834 cursor = context.getContentResolver().query(Uri.parse(sourceUri), columns, null, null, null);
1852 } else if (sourceUri.startsWith(ImageSource.FILE_SCHEME) && !sourceUri.startsWith(ImageSource.ASSET_SCHEME)) {
1854 ExifInterface exifInterface = new ExifInterface(sourceUri.substring(ImageSource.FILE_SCHEME.length() - 1));