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

1 2 3

  /hardware/akm/AK8975_FS/libsensors/
AkmSensor.cpp 56 mPendingEvents[Orientation ].version = sizeof(sensors_event_t);
57 mPendingEvents[Orientation ].sensor = ID_O;
58 mPendingEvents[Orientation ].type = SENSOR_TYPE_ORIENTATION;
59 mPendingEvents[Orientation ].orientation.status = SENSOR_STATUS_ACCURACY_HIGH;
90 case Orientation:
154 case Orientation:
267 return Orientation;
308 mPendingMask |= 1<<Orientation;
309 mPendingEvents[Orientation].orientation.azimuth = value * CONVERT_O
    [all...]
AkmSensor.h 42 Orientation,
  /frameworks/support/design/tests/src/android/support/design/testutils/
TestDrawable.java 35 super(Orientation.TOP_BOTTOM, new int[] { color, color });
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
eventhistory.h 27 QVariant headerData(int section, Qt::Orientation orientation,
eventhistory.cpp 47 QVariant EventListModel::headerData(int section, Qt::Orientation orientation,
53 if (orientation == Qt::Horizontal) {
  /development/samples/devbytes/graphics/FoldingLayout/src/com/example/android/foldinglayout/
FoldingLayoutActivity.java 45 import com.example.android.foldinglayout.FoldingLayout.Orientation;
51 * The number of folds, orientation (vertical or horizontal) of the fold, and the
84 private Orientation mOrientation = Orientation.HORIZONTAL;
284 mOrientation = (mOrientation == Orientation.HORIZONTAL) ? Orientation.VERTICAL :
285 Orientation.HORIZONTAL;
286 item.setTitle((mOrientation == Orientation.HORIZONTAL) ? R.string.vertical :
383 if (mOrientation == Orientation.VERTICAL) {
FoldingLayout.java 35 * orientation of the fold can be specified. Each of these parameters can
55 public static enum Orientation {
72 private Orientation mOrientation = Orientation.HORIZONTAL;
180 public void setOrientation(Orientation orientation) {
181 if (orientation != mOrientation) {
182 mOrientation = orientation;
205 public Orientation getOrientation() {
224 * This method is called in order to update the fold's orientation, ancho
    [all...]
  /external/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/mock/input/
MockInput.java 224 public Orientation getNativeOrientation() {
225 return Orientation.Landscape;
  /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...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
RoundRects.java 47 mDrawable = new GradientDrawable(GradientDrawable.Orientation.TL_BR,
  /packages/apps/Messaging/src/com/android/messaging/ui/
OrientedBitmapDrawable.java 31 * A drawable that draws a bitmap in a flipped or rotated orientation without having to adjust the
41 public static BitmapDrawable create(final int orientation, Resources res, Bitmap bitmap) {
42 if (orientation <= ExifInterface.Orientation.TOP_LEFT) {
47 return new OrientedBitmapDrawable(orientation, res, bitmap);
51 private OrientedBitmapDrawable(final int orientation, Resources res, Bitmap bitmap) {
53 mOrientationParams = ExifInterface.getOrientationParams(orientation);
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
ExifInterface.java 370 * <li>TOP_LEFT is the normal orientation.</li>
380 public static interface Orientation {
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java 181 public enum Orientation {
201 this(new GradientState(Orientation.TOP_BOTTOM, null), null);
205 * Create a new gradient drawable given an orientation and an array
208 public GradientDrawable(Orientation orientation, @ColorInt int[] colors) {
209 this(new GradientState(orientation, colors), null);
567 * gradient's axis of orientation (see {@link #getOrientation()})
623 * Returns the orientation of the gradient defined in this drawable.
625 * @return the orientation of the gradient defined in this drawable
626 * @see #setOrientation(Orientation)
    [all...]
  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidInput.java 141 private final Orientation nativeOrientation;
178 nativeOrientation = Orientation.Landscape;
180 nativeOrientation = Orientation.Portrait;
638 final float[] orientation = new float[3]; field in class:AndroidInput
642 SensorManager.getOrientation(R, orientation);
643 azimuth = (float)Math.toDegrees(orientation[0]);
644 pitch = (float)Math.toDegrees(orientation[1]);
645 roll = (float)Math.toDegrees(orientation[2]);
808 int orientation = 0; local
811 orientation = ((Activity)context).getWindowManager().getDefaultDisplay().getRotation();
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/
Input.java 680 /** The azimuth is the angle of the device's orientation around the z-axis. The positive z-axis points towards the earths
688 /** The pitch is the angle of the device's orientation around the x-axis. The positive x-axis roughly points to the west and is
695 /** The roll is the angle of the device's orientation around the y-axis. The positive y-axis points to the magnetic north pole
746 /** @return the rotation of the device with respect to its native orientation. */
749 /** @return the native orientation of the device. */
750 public Orientation getNativeOrientation ();
752 public enum Orientation {
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
GradientDrawableTest.java 34 import android.graphics.drawable.GradientDrawable.Orientation;
52 new GradientDrawable(GradientDrawable.Orientation.BL_TR, color);
92 Orientation orientation; local
94 orientation = Orientation.BL_TR;
95 gradientDrawable.setOrientation(orientation);
96 assertEquals("Orientation set/get are symmetric",
97 orientation, gradientDrawable.getOrientation());
  /development/apps/NinePatchLab/src/com/android/ninepatch/
NinePatchLab.java 63 return new GradientDrawable(GradientDrawable.Orientation.TR_BL,
  /device/google/contexthub/util/nanotool/
contexthub.h 53 Orientation,
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
HeaderElevationController.java 51 GradientDrawable.Orientation.TOP_BOTTOM, new int[] {0x1E000000, 0x00000000}));
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ButteryProgressBar.java 117 mShadow = new GradientDrawable(GradientDrawable.Orientation.TOP_BOTTOM,
  /external/jhead/
exif.c 206 { TAG_ORIENTATION, "Orientation", FMT_USHORT, 1},
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifInterface.java 370 * <li>TOP_LEFT is the normal orientation.</li>
380 public static interface Orientation {
    [all...]
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifInterface.java 373 * <li>TOP_LEFT is the normal orientation.</li>
383 public static interface Orientation {
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifInterface.java 370 * <li>TOP_LEFT is the normal orientation.</li>
380 public static interface Orientation {
    [all...]
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
IOSInput.java 505 // we measure orientation counter clockwise, just like on Android
513 public Orientation getNativeOrientation () {
515 return Orientation.Landscape;
517 return Orientation.Portrait;

Completed in 2278 milliseconds

1 2 3