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

1 2

  /external/skia/include/core/
SkDeviceProperties.h 18 /** The orientation of the pixel specifies the interpretation of the
19 * layout. If the orientation is horizontal, the layout is interpreted as
20 * left to right. It the orientation is vertical, the layout is
23 enum Orientation {
48 Orientation getOrientation() {
49 return static_cast<Orientation>(fGeometry | kOrientationMask);
64 static Orientation fromOldOrientation(SkFontHost::LCDOrientation orientation) {
65 switch (orientation) {
80 Orientation orientation = fromOldOrientation(SkFontHost::GetSubpixelOrientation()); //kHorizontal_Orientatio local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderDetailsMarker.h 34 enum Orientation { Up, Down, Left, Right };
36 Orientation orientation() const;
RenderDetailsMarker.cpp 78 RenderDetailsMarker::Orientation RenderDetailsMarker::orientation() const function in class:WebCore::RenderDetailsMarker
103 switch (orientation()) {
  /external/webkit/Source/WebKit/chromium/public/
WebScrollbar.h 45 enum Orientation {
63 WEBKIT_API static WebScrollbar* create(WebScrollbarClient*, Orientation);
  /packages/apps/Camera/src/com/android/camera/
Exif.java 48 case ExifTag.Orientation.TOP_LEFT:
50 case ExifTag.Orientation.BOTTOM_LEFT:
52 case ExifTag.Orientation.RIGHT_TOP:
54 case ExifTag.Orientation.RIGHT_BOTTOM:
57 Log.i(TAG, "Unsupported orientation");
64 Log.i(TAG, "Orientation not found");
67 Log.w(TAG, "Failed to read EXIF orientation", e);
70 Log.w(TAG, "Failed to read EXIF orientation", e);
  /external/webkit/Source/WebKit/qt/Api/
qwebframe.h 152 Qt::ScrollBarPolicy scrollBarPolicy(Qt::Orientation orientation) const;
153 void setScrollBarPolicy(Qt::Orientation orientation, Qt::ScrollBarPolicy policy);
155 void setScrollBarValue(Qt::Orientation orientation, int value);
156 int scrollBarValue(Qt::Orientation orientation) const;
157 int scrollBarMinimum(Qt::Orientation orientation) const
    [all...]
  /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) {
  /external/webkit/Source/WebCore/svg/
SVGGlyphElement.h 38 enum Orientation {
55 , orientation(Both)
76 && orientation == other.orientation
88 unsigned orientation : 2; // Orientation member in struct:WebCore::SVGGlyphIdentifier
SVGGlyphElement.cpp 93 static inline SVGGlyphIdentifier::Orientation parseOrientation(const AtomicString& value)
154 // Spec: The horizontal advance after rendering the glyph in horizontal orientation.
170 // Spec: The vertical advance after rendering a glyph in vertical orientation.
182 identifier.orientation = parseOrientation(getAttribute(orientationAttr));
  /external/webkit/Source/WebKit/chromium/src/
WebScrollbarImpl.h 48 WebScrollbarImpl(WebScrollbarClient*, Orientation orientation);
WebScrollbarImpl.cpp 53 WebScrollbar* WebScrollbar::create(WebScrollbarClient* client, Orientation orientation)
55 return new WebScrollbarImpl(client, orientation);
63 WebScrollbarImpl::WebScrollbarImpl(WebScrollbarClient* client, Orientation orientation)
69 static_cast<ScrollbarOrientation>(orientation),
84 int length = m_scrollbar->orientation() == HorizontalScrollbar ? m_scrollbar->width() : m_scrollbar->height();
98 ScrollableArea::scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), static_cast<float>(position));
103 int length = m_scrollbar->orientation() == HorizontalScrollbar ? m_scrollbar->width() : m_scrollbar->height();
111 bool horizontal = m_scrollbar->orientation() == HorizontalScrollbar
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java 134 public enum Orientation {
154 this(new GradientState(Orientation.TOP_BOTTOM, null));
158 * Create a new gradient drawable given an orientation and an array
161 public GradientDrawable(Orientation orientation, int[] colors) {
162 this(new GradientState(orientation, colors));
383 * Returns the orientation of the gradient defined in this drawable.
385 public Orientation getOrientation() {
390 * <p>Changes the orientation of the gradient defined in this drawable.</p>
391 * <p><strong>Note</strong>: changing orientation will affect all instance
    [all...]
  /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...]
  /external/webkit/Source/WebCore/platform/qt/
WheelEventQt.cpp 33 void PlatformWheelEvent::applyDelta(int delta, Qt::Orientation orientation)
40 if (orientation == Qt::Horizontal) {
73 applyDelta(e->delta(), e->orientation());
92 applyDelta(e->delta(), e->orientation());
  /external/webkit/Tools/DumpRenderTree/qt/
EventSenderQt.h 89 QGraphicsSceneWheelEvent* createGraphicsSceneWheelEvent(QEvent::Type, const QPoint& pos, const QPoint& screenPos, int delta, Qt::KeyboardModifiers, Qt::Orientation);
  /hardware/invensense/libsensors/
MPLSensor.cpp 83 { "MPL Orientation", "Invensense", 1,
245 mPendingEvents[Orientation].version = sizeof(sensors_event_t);
246 mPendingEvents[Orientation].sensor = ID_O;
247 mPendingEvents[Orientation].type = SENSOR_TYPE_ORIENTATION;
248 mPendingEvents[Orientation].orientation.status
257 mHandlers[Orientation] = &MPLSensor::orienHandler;
770 int index) //note that this is the handler for the android 'orientation' sensor, not the mpl orientation output
780 //ComputeAndOrientation(heading[0], euler, s->orientation.v)
    [all...]
MPLSensor.h 50 Orientation,
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
RoundRects.java 47 mDrawable = new GradientDrawable(GradientDrawable.Orientation.TL_BR,
  /external/webkit/Source/WebCore/platform/
PlatformWheelEvent.h 165 void applyDelta(int delta, Qt::Orientation);
  /external/chromium/chrome/browser/chromeos/input_method/
candidate_window.cc 106 // Creates shortcut text from the given index and the orientation.
108 chromeos::InputMethodLookupTable::Orientation orientation) {
119 if (orientation == chromeos::InputMethodLookupTable::kVertical) {
131 chromeos::InputMethodLookupTable::Orientation orientation) {
137 if (orientation == chromeos::InputMethodLookupTable::kVertical) {
155 chromeos::InputMethodLookupTable::Orientation orientation) {
160 (orientation == chromeos::InputMethodLookupTable::kVertical
966 const InputMethodLookupTable::Orientation orientation = local
    [all...]
  /hardware/invensense/libsensors_iio/
MPLSensor.cpp 102 {"MPL Orientation", "Invensense", 1,
116 {"MPL Screen Orientation", "Invensense ", 1,
295 mPendingEvents[Orientation].version = sizeof(sensors_event_t);
296 mPendingEvents[Orientation].sensor = ID_O;
297 mPendingEvents[Orientation].type = SENSOR_TYPE_ORIENTATION;
298 mPendingEvents[Orientation].orientation.status
308 mHandlers[Orientation] = &MPLSensor::orienHandler;
603 // get gyro orientation
632 // get accel orientation
    [all...]
  /development/apps/NinePatchLab/src/com/android/ninepatch/
NinePatchLab.java 63 return new GradientDrawable(GradientDrawable.Orientation.TR_BL,
  /frameworks/av/libvideoeditor/vss/common/inc/
M4WRITER_common.h 158 * @brief This enum defines the possible orientation of a frame as described
190 M4WRITER_Orientation Orientation ;
  /external/jhead/
exif.c 206 { TAG_ORIENTATION, "Orientation", FMT_USHORT, 1},
    [all...]

Completed in 495 milliseconds

1 2