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

1 2 3

  /hardware/akm/AK8975_FS/libsensors/
AkmSensor.h 42 Orientation,
  /external/libcups/filter/
common.c 28 int Orientation = 0, /* 0 = portrait, 1 = landscape, etc. */
89 Orientation = 1;
91 Orientation = 3;
94 else if ((val = cupsGetOption("orientation-requested", num_options, options)) != NULL)
97 * Map IPP orientation values to 0 to 3:
105 Orientation = atoi(val) - 3;
106 if (Orientation >= 2)
107 Orientation ^= 1;
112 switch (Orientation & 3)
131 switch (Orientation & 3
    [all...]
  /hardware/libhardware/modules/camera/3_4/metadata/
metadata_reader.cpp 62 int MetadataReader::Orientation(int* orientation) const {
67 ALOGE("%s: Failed to get orientation from static metadata.", __func__);
71 // Orientation must be 0, 90, 180, or 270.
75 "%s: Invalid orientation %d "
82 *orientation = static_cast<int>(metadata_orientation);
  /device/google/contexthub/util/nanotool/
contexthub.h 53 Orientation,
  /development/samples/devbytes/graphics/FoldingLayout/src/com/example/android/foldinglayout/
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...]
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/exif/
ExifInterface.java 266 * <li>TOP_LEFT is the normal orientation.
276 interface Orientation {
287 /** Wrapper class to define some orientation parameters. */
295 public static OrientationParams getOrientationParams(int orientation) {
297 switch (orientation) {
298 case Orientation.TOP_RIGHT: // Flip horizontal
301 case Orientation.BOTTOM_RIGHT: // Flip vertical
304 case Orientation.BOTTOM_LEFT: // Rotate 180
307 case Orientation.RIGHT_BOTTOM: // Rotate 270
311 case Orientation.RIGHT_TOP: // Rotate 9
    [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);
568 * gradient's axis of orientation (see {@link #getOrientation()})
624 * Returns the orientation of the gradient defined in this drawable.
626 * @return the orientation of the gradient defined in this drawable
627 * @see #setOrientation(Orientation)
    [all...]
  /hardware/invensense/6515/libsensors_iio/
sensors.h 70 Orientation,
139 {"MPL Orientation", "Invensense", 1, SENSORS_ORIENTATION_HANDLE,
169 {"MPL Screen Orientation", "Invensense ", 1, SENSORS_SCREEN_ORIENTATION_HANDLE,
204 {"MPL Orientation", "Invensense", 1, SENSORS_ORIENTATION_HANDLE,
234 {"MPL Screen Orientation", "Invensense ", 1, SENSORS_SCREEN_ORIENTATION_HANDLE,
262 {"MPL Orientation", "Invensense", 1,
290 {"MPL Screen Orientation", "Invensense ", 1,
  /frameworks/support/core-utils/java/android/support/v4/print/
PrintHelper.java 77 * Print the image in landscape orientation (default).
82 * Print the image in portrait orientation.
108 private @interface Orientation {}
135 void setOrientation(int orientation);
151 @Orientation int mOrientation = ORIENTATION_LANDSCAPE;
176 public void setOrientation(@Orientation int orientation) {
177 mOrientation = orientation;
180 @Orientation
208 * Whether the PrintActivity respects the suggested orientation
    [all...]
  /external/libcups/cups/
raster.h 228 typedef enum cups_orient_e /**** Orientation attribute values ****/
272 cups_orient_t Orientation; /* Orientation value (@link cups_orient_t@) */
321 cups_orient_t Orientation; /* Orientation value (@link cups_orient_t@) */
  /hardware/invensense/65xx/libsensors_iio/
MPLSensor.h 85 // bit mask of whether screen orientation is on
133 /* Uncomment to enable DMP display orientation
139 sensor type (DMP screen orientation) to the Java framework.
186 Orientation,
  /external/dng_sdk/source/
dng_negative.h 218 // Base orientation of both the thumbnail and raw data. This is
289 void SetBaseOrientation (const dng_orientation &orientation);
305 /// Logically rotates the image by changing the orientation values.
308 void ApplyOrientation (const dng_orientation &orientation);
753 // Metadata information (XMP, IPTC, EXIF, orientation)
918 void SetBaseOrientation (const dng_orientation &orientation)
920 Metadata ().SetBaseOrientation (orientation);
943 dng_orientation Orientation ()
948 /// Logically rotates the image by changing the orientation values.
951 void ApplyOrientation (const dng_orientation &orientation)
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 89 * {@link GridLayout#setOrientation(int) orientation},
177 public @interface Orientation {}
180 * The horizontal orientation.
185 * The vertical orientation.
260 private static final int ORIENTATION = R.styleable.GridLayout_orientation;
301 setOrientation(a.getInt(ORIENTATION, DEFAULT_ORIENTATION));
314 * Returns the current orientation.
322 @Orientation
329 * GridLayout uses the orientation property for two purposes:
337 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first
    [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...]
  /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/support/v7/recyclerview/src/android/support/v7/widget/
RecyclerView.java 214 public @interface Orientation {}
10068 public int orientation; field in class:RecyclerView.LayoutManager.Properties
    [all...]
  /prebuilts/sdk/current/support/core-utils/
android-support-core-utils.jar 
  /prebuilts/tools/common/netbeans-visual/
org-netbeans-api-visual.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/protos/25.3.0/
protos-25.3.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/protos/25.3.0-beta1/
protos-25.3.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/protos/25.3.0-beta2/
protos-25.3.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/protos/25.3.0-beta3/
protos-25.3.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/protos/25.3.0-beta4/
protos-25.3.0-beta4.jar 

Completed in 1564 milliseconds

1 2 3