HomeSort by relevance Sort by last modified time
    Searched refs:ORIENTATION (Results 1 - 25 of 136) sorted by null

1 2 3 4 5 6

  /packages/apps/Camera2/src/com/android/camera/data/
PhotoDataQuery.java 52 MediaStore.Images.ImageColumns.ORIENTATION, // 6, int, 0, 90, 180, 270
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
LocalSource.java 129 String[] projection = {MediaStore.Images.Media.DATA, MediaStore.Images.Media.ORIENTATION,
165 int orientationIndex = cursor.getColumnIndex(MediaStore.Images.Media.ORIENTATION);
172 data.orientation = cursor.getInt(orientationIndex);
191 String[] projection = {MediaStore.Images.Media.DATA, MediaStore.Images.Media.ORIENTATION,
  /packages/apps/Gallery/src/com/android/camera/gallery/
ImageList.java 100 Media.ORIENTATION,
128 int orientation = cursor.getInt(INDEX_ORIENTATION); local
136 orientation);
Image.java 63 values.put(ImageColumns.ORIENTATION, mRotation);
110 int orientation = ExifInterface.ORIENTATION_NORMAL; local
113 orientation = ExifInterface.ORIENTATION_NORMAL;
116 orientation = ExifInterface.ORIENTATION_ROTATE_90;
119 orientation = ExifInterface.ORIENTATION_ROTATE_180;
122 orientation = ExifInterface.ORIENTATION_ROTATE_270;
127 Integer.toString(orientation));
130 Log.e(TAG, "unable to save exif data with new orientation "
136 * Save the rotated image by updating the Exif "Orientation" tag.
  /packages/apps/Gallery2/src/com/android/gallery3d/provider/
GalleryProvider.java 64 ImageColumns.ORIENTATION};
161 } else if (ImageColumns.ORIENTATION.equals(column)) {
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigTest.java 48 ORIENTATION,
118 case ORIENTATION:
119 mConfig.orientation = value;
206 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_PORTRAIT);
346 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_LANDSCAPE);
353 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_SQUARE);
550 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_LANDSCAPE);
557 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_SQUARE);
600 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_LANDSCAPE);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Images_MediaTest.java 229 values.put(Media.ORIENTATION, 0);
259 assertEquals(0, c.getInt(c.getColumnIndex(Media.ORIENTATION)));
282 values.put(Media.ORIENTATION, 90);
304 assertEquals(90, c.getInt(c.getColumnIndex(Media.ORIENTATION)));
  /packages/apps/LegacyCamera/src/com/android/camera/
Storage.java 53 Location location, int orientation, byte[] jpeg, int width, int height) {
76 values.put(ImageColumns.ORIENTATION, orientation);
Thumbnail.java 59 public Thumbnail(Uri uri, Bitmap bitmap, int orientation) {
61 mBitmap = rotateImage(bitmap, orientation);
81 private static Bitmap rotateImage(Bitmap bitmap, int orientation) {
82 if (orientation != 0) {
85 m.setRotate(orientation, bitmap.getWidth() * 0.5f,
176 return createThumbnail(lastMedia.uri, bitmap, lastMedia.orientation);
182 public Media(long id, int orientation, long dateTaken, Uri uri) {
184 this.orientation = orientation;
190 public final int orientation; field in class:Thumbnail.Media
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalImage.java 82 ImageColumns.ORIENTATION, // 9
303 values.put(Images.Media.ORIENTATION, rotation);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaDocumentsProvider.java 832 final int orientation = queryOrientationForImage(id, signal); local
    [all...]
  /frameworks/native/include/input/
InputEventLabels.h 339 DEFINE_AXIS(ORIENTATION),
  /packages/apps/Camera2/src/com/android/camera/
Storage.java 83 * @param orientation The orientation of the media file.
86 * @param width The width of the media file after the orientation is
88 * @param height The height of the media file after the orientation is
92 Location location, int orientation, ExifInterface exif, byte[] jpeg, int width,
95 return addImage(resolver, title, date, location, orientation, exif, jpeg, width, height,
110 * @param orientation The orientation of the media file.
112 * @param width The width of the media file after the orientation is
114 * @param height The height of the media file after the orientation i
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 197 // picture. The degree is a one element array which returns the orientation
238 values.put(Images.Media.ORIENTATION, degree[0]);
258 int orientation = exif.getAttributeInt( local
260 if (orientation != -1) {
261 // We only recognize a subset of orientation tag values.
262 switch(orientation) {
  /device/huawei/angler/camera/mm-image-codec/qexif/
qexif.h 187 ORIENTATION,
688 // Orientation of image
692 #define EXIFTAGID_ORIENTATION CONSTRUCT_TAGID(ORIENTATION, _ID_ORIENTATION)
    [all...]
  /device/lge/bullhead/camera/mm-image-codec/qexif/
qexif.h 187 ORIENTATION,
688 // Orientation of image
692 #define EXIFTAGID_ORIENTATION CONSTRUCT_TAGID(ORIENTATION, _ID_ORIENTATION)
    [all...]
  /device/moto/shamu/camera/mm-image-codec/qexif/
qexif.h 187 ORIENTATION,
688 // Orientation of image
692 #define EXIFTAGID_ORIENTATION CONSTRUCT_TAGID(ORIENTATION, _ID_ORIENTATION)
    [all...]
  /hardware/qcom/camera/mm-image-codec/qexif/
qexif.h 187 ORIENTATION,
688 // Orientation of image
692 #define EXIFTAGID_ORIENTATION CONSTRUCT_TAGID(ORIENTATION, _ID_ORIENTATION)
    [all...]
  /device/generic/goldfish/sensors/
sensors_qemu.c 81 SENSOR_(ORIENTATION,"orientation") \
304 /* "orientation:<azimuth>:<pitch>:<roll>" is sent when orientation
306 if (sscanf(buff, "orientation:%g:%g:%g", params+0, params+1, params+2)
309 events[ID_ORIENTATION].orientation.azimuth = params[0];
310 events[ID_ORIENTATION].orientation.pitch = params[1];
311 events[ID_ORIENTATION].orientation.roll = params[2];
312 events[ID_ORIENTATION].orientation.status =
588 { .name = "Goldfish Orientation sensor"
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 58 public static final int ORI_NORMAL = ExifInterface.Orientation.TOP_LEFT;
59 public static final int ORI_ROTATE_90 = ExifInterface.Orientation.RIGHT_TOP;
60 public static final int ORI_ROTATE_180 = ExifInterface.Orientation.BOTTOM_LEFT;
61 public static final int ORI_ROTATE_270 = ExifInterface.Orientation.RIGHT_BOTTOM;
62 public static final int ORI_FLIP_HOR = ExifInterface.Orientation.TOP_RIGHT;
63 public static final int ORI_FLIP_VERT = ExifInterface.Orientation.BOTTOM_RIGHT;
64 public static final int ORI_TRANSPOSE = ExifInterface.Orientation.LEFT_TOP;
65 public static final int ORI_TRANSVERSE = ExifInterface.Orientation.LEFT_BOTTOM;
96 * Returns the image's orientation flag. Defaults to ORI_NORMAL if no valid
97 * orientation was found
165 int orientation = tagval; local
188 int orientation = getMetadataOrientation(context, uri); local
475 int orientation = getMetadataOrientation(context, sourceUri); local
    [all...]
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /device/moto/shamu/camera/QCamera/HAL2/core/inc/
QCamera_Intf.h     [all...]
  /frameworks/base/core/java/android/provider/
MediaStore.java 198 * The name of the Intent-extra used to control the orientation of a ViewImage or a MovieView.
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
SaveImage.java 323 ExifInterface.Orientation.TOP_LEFT));
706 values.put(Images.Media.ORIENTATION, 0);

Completed in 2713 milliseconds

1 2 3 4 5 6