Lines Matching refs:ORIENTATION
89 int orientation = orientationInput;
90 if (orientation == -1) {
91 orientation = 0;
94 orientation = orientation % 360;
96 if (orientation < (0 * 90) + 45) {
98 } else if (orientation < (1 * 90) + 45) {
100 } else if (orientation < (2 * 90) + 45) {
102 } else if (orientation < (3 * 90) + 45) {
135 * picture. The degree is a one element array which returns the orientation
181 values.put(Images.Media.ORIENTATION, degree[0]);
202 int orientation = exif.getAttributeInt(
204 if (orientation != -1) {
205 // We only recognize a subset of orientation tag values.
206 switch(orientation) {
227 public AddImageCancelable(Uri uri, ContentResolver cr, int orientation, Bitmap source, byte[] jpegData) {
276 public static Cancelable<Void> storeImage(Uri uri, ContentResolver cr, int orientation, Bitmap source, byte[] jpegData) {
277 return new AddImageCancelable(uri, cr, orientation, source, jpegData);