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

1 2 3 4 5

  /external/chromium_org/content/browser/device_orientation/
data_fetcher_impl_win.h 19 class Orientation;
26 // orientation data.
45 void OnOrientationData(Orientation* orientation);
46 const Orientation* GetOrientation();
51 scoped_refptr<Orientation> current_orientation_;
56 scoped_refptr<Orientation> next_orientation_;
orientation.cc 5 #include "content/browser/device_orientation/orientation.h"
13 Orientation::Orientation()
20 Orientation::~Orientation() {
23 IPC::Message* Orientation::CreateIPCMessage(int render_view_id) const {
38 // observers should be notified of the new orientation.
39 bool Orientation::ShouldFireEvent(const DeviceData* old_data) const {
40 scoped_refptr<const Orientation> old_orientation(
41 static_cast<const Orientation*>(old_data))
    [all...]
accelerometer_mac.h 19 class Orientation;
33 const Orientation* GetOrientation();
orientation.h 14 class Orientation : public DeviceData {
17 // specified in http://dev.w3.org/geo/api/spec-source-orientation.html
21 CONTENT_EXPORT Orientation();
56 virtual ~Orientation();
data_fetcher_impl_android.h 18 class Orientation;
29 // once Device Orientation switches to shared memory implementation.
67 const Orientation* GetOrientation();
80 scoped_refptr<Orientation> current_orientation_;
84 scoped_refptr<Orientation> next_orientation_;
86 // The Java provider of orientation info.
provider_unittest.cc 12 #include "content/browser/device_orientation/orientation.h"
73 // Class for checking expectations on orientation updates from the Provider.
88 scoped_refptr<const Orientation> orientation(
89 static_cast<const Orientation*>(device_data));
90 if (orientation.get() == NULL)
91 orientation = new Orientation();
93 scoped_refptr<const Orientation> expected(static_cast<const Orientation*>(
    [all...]
accelerometer_mac.cc 10 #include "content/browser/device_orientation/orientation.h"
33 // Retrieve per-axis orientation values.
36 // See here: http://dev.w3.org/geo/api/spec-source-orientation.html
42 const Orientation* AccelerometerMac::GetOrientation() {
72 scoped_refptr<Orientation> orientation(new Orientation());
74 orientation->set_beta(kRad2deg * atan2(-axis_value[1], axis_value[2]));
75 orientation->set_gamma(kRad2deg * asin(axis_value[0]));
82 if (orientation->beta() == 180.0)
    [all...]
  /external/chromium_org/ui/views/controls/
separator.h 19 enum Orientation {
27 explicit Separator(Orientation orientation);
37 const Orientation orientation_;
single_split_view.h 22 enum Orientation {
31 Orientation orientation,
46 Orientation orientation() const { function in class:views::SingleSplitView
50 void set_orientation(Orientation orientation) {
51 is_horizontal_ = orientation == HORIZONTAL_SPLIT;
125 // Orientation of the split view.
slider.h 50 enum Orientation {
55 Slider(SliderListener* listener, Orientation orientation);
103 Orientation orientation_;
separator.cc 21 Separator::Separator(Orientation orientation) : orientation_(orientation) {
  /external/chromium_org/cc/quads/
io_surface_draw_quad.h 17 enum Orientation {
29 Orientation orientation);
38 Orientation orientation);
42 Orientation orientation; member in class:cc::IOSurfaceDrawQuad
  /external/chromium_org/ui/views/layout/
box_layout.h 28 enum Orientation {
37 BoxLayout(Orientation orientation,
60 const Orientation orientation_;
  /external/chromium_org/third_party/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(SkFontLCDConfig::LCDOrientation orientation) {
65 switch (orientation) {
80 Orientation orientation = fromOldOrientation(SkFontLCDConfig::GetSubpixelOrientation()); //kHorizontal_Orienta (…) local
    [all...]
  /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(SkFontLCDConfig::LCDOrientation orientation) {
65 switch (orientation) {
80 Orientation orientation = fromOldOrientation(SkFontLCDConfig::GetSubpixelOrientation()); //kHorizontal_Orienta (…) local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDetailsMarker.h 32 enum Orientation { Up, Down, Left, Right };
34 Orientation orientation() const;
  /external/chromium_org/chromeos/dbus/ibus/
ibus_lookup_table.h 39 // int32 1 // Orientation
82 enum Orientation {
125 // Returns the orientation of lookup table.
126 Orientation orientation() const { return orientation_; } function in class:chromeos::IBusLookupTable
127 void set_orientation(Orientation orientation) {
128 orientation_ = orientation;
145 Orientation 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);
  /hardware/akm/AK8975_FS/libsensors/
AkmSensor.cpp 55 mPendingEvents[Orientation ].version = sizeof(sensors_event_t);
56 mPendingEvents[Orientation ].sensor = ID_O;
57 mPendingEvents[Orientation ].type = SENSOR_TYPE_ORIENTATION;
58 mPendingEvents[Orientation ].orientation.status = SENSOR_STATUS_ACCURACY_HIGH;
89 case Orientation:
153 case Orientation:
266 return Orientation;
307 mPendingMask |= 1<<Orientation;
308 mPendingEvents[Orientation].orientation.azimuth = value * CONVERT_O
    [all...]
  /external/chromium_org/chrome/browser/chromeos/input_method/
candidate_view.h 23 IBusLookupTable::Orientation orientation);
76 // The orientation of the candidate view.
77 IBusLookupTable::Orientation orientation_;
  /external/chromium_org/third_party/WebKit/public/platform/
WebScrollbar.h 45 enum Orientation {
108 virtual Orientation orientation() const = 0;
  /external/chromium_org/cc/input/
scrollbar.h 26 virtual ScrollbarOrientation Orientation() const = 0;
  /external/chromium_org/third_party/WebKit/public/web/
WebPluginScrollbar.h 42 WEBKIT_EXPORT static WebPluginScrollbar* createForPlugin(WebScrollbar::Orientation,
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
ColorPickerAdvancedComponent.java 9 import android.graphics.drawable.GradientDrawable.Orientation;
50 mGradientDrawable = new GradientDrawable(GradientDrawable.Orientation.LEFT_RIGHT, null);
87 Orientation currentOrientation = Orientation.LEFT_RIGHT;
  /external/chromium_org/cc/test/
fake_scrollbar.h 21 virtual ScrollbarOrientation Orientation() const OVERRIDE;

Completed in 1329 milliseconds

1 2 3 4 5