Searched defs:rotation (Results 1 - 25 of 105) sorted by relevance

12345

/external/qemu/android/skin/
H A Dwindow.h44 SkinRotation rotation,
63 SkinRotation rotation; member in struct:__anon29202
H A Dimage.h34 SkinRotation rotation; /* rotation */ member in struct:SkinImageDesc
72 /* get the rotation of a given image. this decrements the reference count
75 extern SkinImage* skin_image_rotate( SkinImage* source, SkinRotation rotation );
86 SkinRotation rotation,
/external/valgrind/main/memcheck/tests/
H A Dbug287260.c5 signed int rotation : 10; member in struct:__anon33051
13 r.rotation = 45;
14 fprintf (stderr, "%d\n", r.rotation);
/external/chromium_org/athena/system/
H A Dorientation_controller.cc45 gfx::Display::Rotation rotation; local
47 rotation = gfx::Display::ROTATE_270;
49 rotation = gfx::Display::ROTATE_90;
51 rotation = gfx::Display::ROTATE_180;
53 rotation = gfx::Display::ROTATE_0;
55 // No rotation as gravity threshold was not hit.
59 if (rotation == current_rotation_)
62 current_rotation_ = rotation;
63 ScreenManager::Get()->SetRotation(rotation);
/external/chromium_org/ui/base/cursor/
H A Dcursor_loader.h22 gfx::Display::Rotation rotation() const { function in class:ui::CursorLoader
26 void set_rotation(gfx::Display::Rotation rotation) { argument
27 rotation_ = rotation;
68 // The current rotation of the mouse cursor icon.
H A Dcursor_util.cc19 gfx::Display::Rotation rotation,
22 switch (rotation) {
64 gfx::Display::Rotation rotation,
74 scale / image_rep.scale(), rotation, bitmap, hotspot);
80 gfx::Display::Rotation rotation,
83 // TODO(oshima|tdanderson): Support rotation and fractional scale factor.
18 ScaleAndRotateCursorBitmapAndHotpoint(float scale, gfx::Display::Rotation rotation, SkBitmap* bitmap, gfx::Point* hotpoint) argument
62 GetImageCursorBitmap(int resource_id, float scale, gfx::Display::Rotation rotation, gfx::Point* hotspot, SkBitmap* bitmap) argument
78 GetAnimatedCursorBitmaps(int resource_id, float scale, gfx::Display::Rotation rotation, gfx::Point* hotspot, std::vector<SkBitmap>* bitmaps) argument
/external/deqp/framework/platform/android/
H A DtcuAndroidUtil.cpp80 ScreenOrientation mapScreenRotation (ScreenRotation rotation) argument
82 switch (rotation)
89 print("Warning: Unsupported rotation");
/external/chromium_org/extensions/browser/api/system_display/
H A Ddisplay_info_provider.cc20 int RotationToDegrees(gfx::Display::Rotation rotation) { argument
21 switch (rotation) {
46 unit->rotation = RotationToDegrees(display.rotation());
/external/chromium_org/media/video/capture/android/
H A Dvideo_capture_device_android.cc142 jint rotation) {
170 rotation, local
137 OnFrameAvailable( JNIEnv* env, jobject obj, jbyteArray data, jint length, jint rotation) argument
/external/chromium_org/pdf/pdfium/
H A Dpdfium_range.cc31 int rotation) {
53 page_->PageToScreen(offset, zoom, left, top, right, bottom, rotation));
29 GetScreenRects(const pp::Point& offset, double zoom, int rotation) argument
/external/chromium_org/ui/gfx/
H A Dinterpolated_transform_unittest.cc30 gfx::Transform rotation; local
31 rotation.Rotate(i);
33 CheckApproximatelyEqual(rotation, interpolated);
35 CheckApproximatelyEqual(rotation, interpolated);
127 scoped_ptr<ui::InterpolatedTransform> rotation(
151 rotation->SetChild(translation.release());
152 to_return->SetChild(rotation.release());
196 scoped_ptr<ui::InterpolatedTransform> rotation(
203 rotation.release()));
H A Ddisplay.cc103 void Display::SetRotationAsDegree(int rotation) { argument
104 switch (rotation) {
H A Ddisplay.h74 Rotation rotation() const { return rotation_; } function in class:gfx::Display
75 void set_rotation(Rotation rotation) { rotation_ = rotation; } argument
77 void SetRotationAsDegree(int rotation);
/external/qemu/android/
H A Dframebuffer.h26 * note the 'rotation' field: it can take values 0, 1, 2 or 3 and corresponds
27 * to a rotation that must be performed to the pixels stored in the framebuffer
28 * *before* displaying them a value of 1 corresponds to a rotation of
53 int rotation; /* rotation to be applied when displaying */ member in struct:QFrameBuffer
79 int rotation,
104 * framebuffer's internal rotation has changed. This is the rotation
110 typedef void (*QFrameBufferRotateFunc)( void* opaque, int rotation );
173 qframebuffer_rotate( QFrameBuffer* qfbuff, int rotation );
[all...]
/external/chromium_org/ash/wm/maximize_mode/
H A Dmaximize_mode_controller_unittest.cc62 // screen rotation tests.
93 gfx::Display::InternalDisplayId()).rotation();
96 void SetInternalDisplayRotation(gfx::Display::Rotation rotation) const {
98 SetDisplayRotation(gfx::Display::InternalDisplayId(), rotation); local
306 // rotation of the internal display.
366 // Turn past half-way point to next direction and rotation should remain
381 // Turn back just beyond the half-way point and the new rotation should
463 // rotation lock has been set.
474 // Turn past the threshold for rotation.
487 // next accelerometer update the rotation loc
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
H A DScreenOrientationController.cpp60 uint16_t rotation = screenOrientationAngle(view); local
61 bool isTallDisplay = rotation % 180 ? rect.height() < rect.width() : rect.height() > rect.width();
62 switch (rotation) {
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dfakewebrtcdeviceinfo.h92 webrtc::VideoCaptureRotation& rotation) {
91 GetOrientation(const char* device_id, webrtc::VideoCaptureRotation& rotation) argument
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Dconvert_to_argb.cc27 // Convert camera sample to I420 with cropping, rotation and vertical flip.
38 enum RotationMode rotation,
48 // One pass rotation is available for some formats. For the rest, convert
53 LIBYUV_BOOL need_buf = (rotation && format != FOURCC_ARGB) ||
316 crop_width, abs_crop_height, rotation);
33 ConvertToARGB(const uint8* sample, size_t sample_size, uint8* crop_argb, int argb_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
/external/chromium_org/third_party/libyuv/source/
H A Dconvert_to_argb.cc27 // Convert camera sample to I420 with cropping, rotation and vertical flip.
38 enum RotationMode rotation,
48 // One pass rotation is available for some formats. For the rest, convert
53 LIBYUV_BOOL need_buf = (rotation && format != FOURCC_ARGB) ||
316 crop_width, abs_crop_height, rotation);
33 ConvertToARGB(const uint8* sample, size_t sample_size, uint8* crop_argb, int argb_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DInputSystem.java66 // The order of orientation axes changes depending on the rotation of the screen.
69 // space into screen space depending on the rotation of the screen from
120 public void setScreenRotation(int rotation) { argument
121 mScreenRotation = rotation;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowDisplay.java25 private int rotation = Surface.ROTATION_0; field in class:ShadowDisplay
61 return rotation;
125 public void setRotation(int rotation) { argument
126 this.rotation = rotation;
/external/chromium_org/ash/display/
H A Ddisplay_info.h58 // (5%), and one rotation property where 'r' is 90 degree clock-wise
68 // no rotation. 1.0 ui scale.
71 // no overscan, no rotation. 1.0 ui scale.
106 void set_rotation(gfx::Display::Rotation rotation) { rotation_ = rotation; } argument
107 gfx::Display::Rotation rotation() const { return rotation_; } function in class:ash::DisplayInfo
164 // and rotation settings.
242 // of |bounds_in_native_| if the display has overscan insets and/or rotation.
/external/chromium_org/athena/screen/
H A Dscreen_manager_impl.cc207 virtual void SetRotation(gfx::Display::Rotation rotation) OVERRIDE;
345 void ScreenManagerImpl::SetRotation(gfx::Display::Rotation rotation) { argument
346 last_requested_rotation_ = rotation;
347 if (rotation_locked_ || rotation ==
348 gfx::Screen::GetNativeScreen()->GetPrimaryDisplay().rotation()) {
352 // TODO(flackr): Use display manager to update display rotation:
355 SetDisplayRotation(rotation);
/external/chromium_org/cc/layers/
H A Ddelegated_renderer_layer_impl_unittest.cc333 gfx::Transform rotation; local
334 rotation.RotateAboutZAxis(30.0);
335 delegated_renderer_layer_->SetTransform(rotation);
/external/chromium_org/cc/test/
H A Drender_pass_test_common.cc200 gfx::Transform rotation; local
201 rotation.Rotate(45);
203 transformed_state->content_to_target_transform * rotation;

Completed in 2327 milliseconds

12345