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

  /external/qemu/android/
hw-sensors.h 27 SENSOR_(ORIENTATION,"orientation") \
39 /* COARSE ORIENTATION VALUES */
45 /* change the coarse orientation value */
  /packages/apps/Camera/src/com/android/camera/gallery/
ImageList.java 77 Media.ORIENTATION,
94 int orientation = cursor.getInt(INDEX_ORIENTATION); local
97 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.
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigTest.java 43 ORIENTATION,
93 mConfig.orientation = Configuration.ORIENTATION_PORTRAIT;
121 case ORIENTATION:
122 mConfig.orientation = value;
294 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_LANDSCAPE);
301 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_SQUARE);
424 * Precidence order: mcc, mnc, locale, orientation, density,
455 config.setProperty(Properties.ORIENTATION,
464 config.setProperty(Properties.ORIENTATION,
473 config.setProperty(Properties.ORIENTATION,
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Images_MediaTest.java 256 values.put(Media.ORIENTATION, 0);
286 assertEquals(0, c.getInt(c.getColumnIndex(Media.ORIENTATION)));
307 values.put(Media.ORIENTATION, 90);
329 assertEquals(90, c.getInt(c.getColumnIndex(Media.ORIENTATION)));
  /packages/apps/Gallery3D/src/com/cooliris/media/
ImageManager.java 89 int orientation = orientationInput; local
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
202 int orientation = exif.getAttributeInt( local
    [all...]
LocalDataSource.java 172 // Parse EXIF orientation if a local file.
351 values.put(Images.ImageColumns.ORIENTATION, rotationString);
  /packages/apps/Camera/src/com/android/camera/
ImageManager.java 159 int orientation = orientationInput; local
161 if (orientation == OrientationEventListener.ORIENTATION_UNKNOWN) {
162 orientation = 0;
165 orientation = orientation % 360;
167 if (orientation < (0 * 90) + 45) {
169 } else if (orientation < (1 * 90) + 45) {
171 } else if (orientation < (2 * 90) + 45) {
173 } else if (orientation < (3 * 90) + 45) {
186 // picture. The degree is a one element array which returns the orientation
251 int orientation = exif.getAttributeInt( local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 200 // picture. The degree is a one element array which returns the orientation
241 values.put(Images.Media.ORIENTATION, degree[0]);
261 int orientation = exif.getAttributeInt( local
263 if (orientation != -1) {
264 // We only recognize a subset of orientation tag values.
265 switch(orientation) {
  /sdk/emulator/sensors/
sensors_qemu.c 74 SENSOR_(ORIENTATION,"orientation") \
358 /* "orientation:<azimuth>:<pitch>:<roll>" is sent when orientation changes */
359 if (sscanf(buff, "orientation:%g:%g:%g", params+0, params+1, params+2) == 3) {
361 data->sensors[ID_ORIENTATION].orientation.azimuth = params[0];
362 data->sensors[ID_ORIENTATION].orientation.pitch = params[1];
363 data->sensors[ID_ORIENTATION].orientation.roll = params[2];
468 { .name = "Goldfish Orientation sensor",
  /packages/apps/Gallery3D/src/com/cooliris/cache/
CacheService.java 112 Images.ImageColumns.DATA, Images.ImageColumns.ORIENTATION };
134 Images.ImageColumns.DATA, Images.ImageColumns.ORIENTATION, Images.ImageColumns.BUCKET_ID };
481 final int[] orientation = new int[size]; local
490 orientation[ctr] = cursorImages.getInt(THUMBNAIL_ORIENTATION_INDEX);
497 list.orientation = orientation;
    [all...]
  /frameworks/base/core/java/android/provider/
MediaStore.java 97 * The name of the Intent-extra used to control the orientation of a ViewImage or a MovieView.
448 * The orientation for the image expressed as degrees.
452 public static final String ORIENTATION = "orientation";
    [all...]
  /frameworks/base/media/java/android/media/
MediaScanner.java 747 int orientation = exif.getAttributeInt( local
749 if (orientation != -1) {
750 // We only recognize a subset of orientation tag values.
752 switch(orientation) {
766 values.put(Images.Media.ORIENTATION, degree);
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 71 milliseconds