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

1 2

  /external/qemu/android/
hw-sensors.h 44 SENSOR_(ORIENTATION,"orientation") \
57 /* COARSE ORIENTATION VALUES */
63 /* change the coarse orientation value */
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigTest.java 44 ORIENTATION,
114 case ORIENTATION:
115 mConfig.orientation = value;
182 config.mConfig.orientation = Configuration.ORIENTATION_PORTRAIT;
323 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_LANDSCAPE);
330 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_SQUARE);
527 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_LANDSCAPE);
534 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_SQUARE);
577 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_LANDSCAPE);
741 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_LANDSCAPE)
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
LocalSource.java 119 String[] projection = {MediaStore.Images.Media.DATA, MediaStore.Images.Media.ORIENTATION,
156 int orientationIndex = cursor.getColumnIndex(MediaStore.Images.Media.ORIENTATION);
163 data.orientation = cursor.getInt(orientationIndex);
173 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/provider/src/android/provider/cts/
MediaStore_Images_MediaTest.java 213 values.put(Media.ORIENTATION, 0);
243 assertEquals(0, c.getInt(c.getColumnIndex(Media.ORIENTATION)));
266 values.put(Media.ORIENTATION, 90);
288 assertEquals(90, c.getInt(c.getColumnIndex(Media.ORIENTATION)));
  /packages/apps/Camera/src/com/android/camera/
Storage.java 80 long date, Location location, int orientation, byte[] jpeg,
85 return addImage(resolver, title, date, location, orientation,
91 long date, Location location, int orientation, int jpegLength,
100 values.put(ImageColumns.ORIENTATION, 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/filtershow/crop/
CropLoader.java 56 * Returns the orientation of image at the given URI as one of 0, 90, 180,
61 * @return the orientation of the image. Defaults to 0.
73 int orientation = 0; local
77 orientation = ExifInterface.getRotationForOrientationValue(
80 Log.w(LOGTAG, "Failed to read EXIF orientation", e);
82 return orientation;
87 new String[] { MediaStore.Images.ImageColumns.ORIENTATION },
266 values.put(Images.Media.ORIENTATION, 0);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalImage.java 85 ImageColumns.ORIENTATION, // 9
306 values.put(Images.Media.ORIENTATION, rotation);
  /packages/apps/Gallery2/src/com/android/camera/
Storage.java 81 long date, Location location, int orientation, ExifInterface exif,
94 return addImage(resolver, title, date, location, orientation,
100 long date, Location location, int orientation, int jpegLength,
109 values.put(ImageColumns.ORIENTATION, orientation);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
SaveCopyTask.java 198 ExifInterface.Orientation.TOP_LEFT));
277 values.put(Images.Media.ORIENTATION, 0);
  /device/generic/goldfish/sensors/
sensors_qemu.c 76 SENSOR_(ORIENTATION,"orientation") \
331 /* "orientation:<azimuth>:<pitch>:<roll>" is sent when orientation changes */
332 if (sscanf(buff, "orientation:%g:%g:%g", params+0, params+1, params+2) == 3) {
334 data->sensors[ID_ORIENTATION].orientation.azimuth = params[0];
335 data->sensors[ID_ORIENTATION].orientation.pitch = params[1];
336 data->sensors[ID_ORIENTATION].orientation.roll = params[2];
337 data->sensors[ID_ORIENTATION].orientation.status = SENSOR_STATUS_ACCURACY_HIGH;
510 { .name = "Goldfish Orientation sensor"
    [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) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 86 public static final int ORI_NORMAL = ExifInterface.Orientation.TOP_LEFT;
87 public static final int ORI_ROTATE_90 = ExifInterface.Orientation.RIGHT_TOP;
88 public static final int ORI_ROTATE_180 = ExifInterface.Orientation.BOTTOM_LEFT;
89 public static final int ORI_ROTATE_270 = ExifInterface.Orientation.RIGHT_BOTTOM;
90 public static final int ORI_FLIP_HOR = ExifInterface.Orientation.TOP_RIGHT;
91 public static final int ORI_FLIP_VERT = ExifInterface.Orientation.BOTTOM_RIGHT;
92 public static final int ORI_TRANSPOSE = ExifInterface.Orientation.LEFT_TOP;
93 public static final int ORI_TRANSVERSE = ExifInterface.Orientation.LEFT_BOTTOM;
161 int orientation = -1; local
166 orientation = ExifInterface.getRotationForOrientationValue
434 int orientation = ImageLoader.getOrientation(context, sourceUri); local
    [all...]
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /device/lge/mako/camera/
QCamera_Intf.h     [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 77 * {@link GridLayout#setOrientation(int) orientation},
156 * The horizontal orientation.
161 * The vertical orientation.
226 private static final int ORIENTATION = R.styleable.GridLayout_orientation;
238 int orientation = DEFAULT_ORIENTATION; field in class:GridLayout
256 setOrientation(a.getInt(ORIENTATION, DEFAULT_ORIENTATION));
284 * Returns the current orientation.
293 return orientation;
298 * GridLayout uses the orientation property for two purposes:
306 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 77 * {@link GridLayout#setOrientation(int) orientation},
155 * The horizontal orientation.
160 * The vertical orientation.
226 private static final int ORIENTATION = R.styleable.GridLayout_orientation;
239 int orientation = DEFAULT_ORIENTATION; field in class:GridLayout
260 setOrientation(a.getInt(ORIENTATION, DEFAULT_ORIENTATION));
288 * Returns the current orientation.
297 return orientation;
301 * Orientation is used only to generate default row/column indices when
306 * @param orientation either {@link #HORIZONTAL} or {@link #VERTICAL
    [all...]
  /frameworks/base/core/java/android/provider/
MediaStore.java 176 * The name of the Intent-extra used to control the orientation of a ViewImage or a MovieView.
738 * The orientation for the image expressed as degrees.
742 public static final String ORIENTATION = "orientation";
    [all...]
  /frameworks/base/media/java/android/media/
MediaScanner.java     [all...]
  /frameworks/base/services/input/tests/
InputReader_test.cpp 139 void setDisplayInfo(int32_t displayId, int32_t width, int32_t height, int32_t orientation) {
141 bool isRotated = (orientation == DISPLAY_ORIENTATION_90
142 || orientation == DISPLAY_ORIENTATION_270);
145 v.orientation = orientation;
3202 float orientation = atan2f(-sinf(tiltXAngle), sinf(tiltYAngle)); local
4455 float orientation = float(rawOrientation) \/ RAW_ORIENTATION_MAX * M_PI_2; local
    [all...]
  /prebuilts/devtools/tools/lib/
lint-checks.jar 

Completed in 711 milliseconds

1 2