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

1 2 3

  /external/qemu/android/skin/
window.h 44 SkinRotation rotation,
63 SkinRotation rotation; member in struct:__anon9486
image.h 34 AndroidRotation 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,
file.h 30 SkinRotation rotation; /* framebuffer rotation */ member in struct:SkinDisplay
68 SkinRotation rotation; member in struct:SkinLocation
keyboard.c 50 SkinRotation rotation; member in struct:SkinKeyboard
77 SkinRotation rotation )
79 keyboard->rotation = (rotation & 3);
183 switch (keyboard->rotation) {
trackball.c 190 /* rotation applied to events send to the system */
191 SkinRotation rotation; member in struct:SkinTrackBall
227 ball->rotation = SKIN_ROTATION_0;
430 switch (ball->rotation) {
623 skin_trackball_set_rotation( SkinTrackBall* ball, SkinRotation rotation )
625 ball->rotation = rotation & 3;
window.c 52 back->image = skin_image_rotate( sback->image, loc->rotation );
53 skin_rect_rotate( &r, &sback->rect, loc->rotation );
89 SkinRotation rotation; member in struct:ADisplay
109 skin_rect_rotate( &disp->rect, &sdisp->rect, loc->rotation );
113 disp->rotation = (loc->rotation + sdisp->rotation) & 3;
114 switch (disp->rotation) {
134 skin_size_rotate( &disp->datasize, &sdisp->rect.size, sdisp->rotation );
170 display_set_onion( ADisplay* disp, SkinImage* onion, SkinRotation rotation, int blend
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DeviceMotionProviderQt.cpp 58 RefPtr<DeviceMotionData::RotationRate> rotation = DeviceMotionData::RotationRate::create( local
65 rotation,
  /system/core/toolbox/
rotatefb.c 17 int rotation = 0; local
38 fprintf(stderr, "%s: specify rotation\n", argv[0]);
41 rotation = atoi(argv[optind]);
54 if((fbinfo.rotate ^ rotation) & 1) {
63 fbinfo.rotate = rotation;
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
Transition3d.java 81 * Setup a new 3D rotation on the container view.
84 * @param start the start angle at which the rotation must begin
85 * @param end the end angle of the rotation
92 // Create a new 3D rotation with the supplied parameter
94 final Rotate3dAnimation rotation = local
96 rotation.setDuration(500);
97 rotation.setFillAfter(true);
98 rotation.setInterpolator(new AccelerateInterpolator());
99 rotation.setAnimationListener(new DisplayNextView(position));
101 mContainer.startAnimation(rotation);
151 Rotate3dAnimation rotation; local
    [all...]
  /external/qemu/android/
framebuffer.h 26 * 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...]
qemulator.c 109 qemulator_fb_rotate( void* _emulator, int rotation )
464 SkinRotation rotation; local
469 rotation = skin_layout_get_dpad_rotation( layout );
472 skin_keyboard_set_rotation( emulator->keyboard, rotation );
475 skin_trackball_set_rotation( emulator->trackball, rotation );
  /external/webkit/Tools/QtTestBrowser/
webview.cpp 177 QPropertyAnimation* animation = new QPropertyAnimation(graphicsWebView(), "rotation", this);
180 int rotation = int(graphicsWebView()->rotation()); local
182 animation->setStartValue(rotation);
183 animation->setEndValue(rotation + 180 - (rotation % 180));
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextureViewActivity.java 125 int rotation = getWindowManager().getDefaultDisplay().getRotation(); local
128 switch (rotation) {
  /external/qemu/distrib/sdl-1.2.12/src/video/wscons/
SDL_wsconsvideo.c 150 char *rotation; local
211 rotation = SDL_getenv("SDL_VIDEO_WSCONS_ROTATION");
212 if (rotation != NULL) {
213 if (SDL_strlen(rotation) == 0) {
217 } else if (!SDL_strcmp(rotation, "NONE")) {
221 } else if (!SDL_strcmp(rotation, "CW")) {
225 } else if (!SDL_strcmp(rotation, "CCW")) {
229 } else if (!SDL_strcmp(rotation, "UD")) {
235 "SDL_VIDEO_WSCONS_ROTATION", rotation);
554 WSCONS_ReportError("Unknown rotation");
    [all...]
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXAlgo.cpp 1015 OMX_CONFIG_ROTATIONTYPE rotation; local
1027 OMX_INIT_STRUCT(rotation, OMX_CONFIG_ROTATIONTYPE);
1028 rotation.nRotation = degree;
1029 rotation.nPortIndex = mCameraAdapterParameters.mImagePortIndex;
1033 &rotation);
1036 CAMHAL_LOGEB("Error while configuring rotation 0x%x", eError);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalImage.java 84 public int rotation; field in class:LocalImage
122 rotation = cursor.getInt(INDEX_ORIENTATION);
144 rotation = uh.update(rotation, cursor.getInt(INDEX_ORIENTATION));
271 int rotation = (this.rotation + degrees) % 360; local
272 if (rotation < 0) rotation += 360;
278 getExifOrientation(rotation));
289 values.put(Images.Media.ORIENTATION, rotation);
    [all...]
  /external/qemu/hw/
goldfish_fb.c 61 int rotation; /* 0, 1, 2 or 3 */ member in struct:goldfish_fb_state
86 qemu_put_be32(f, s->rotation);
111 /* XXX: We should be able to force a resize/rotation from here ? */
124 s->rotation = qemu_get_be32(f);
602 if(s->set_rotation != s->rotation) {
603 //printf("FB_SET_BASE: rotation : %d => %d\n", s->rotation, s->set_rotation);
604 s->rotation = s->set_rotation;
609 //printf("FB_SET_BASE: need resize (rotation=%d)\n", s->rotation );
    [all...]
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 126 private static final int ROTATION = 0x0010;
134 ROTATION | ROTATION_X | ROTATION_Y | X | Y;
409 * This method will cause the View's <code>rotation</code> property to be animated to the
416 public ViewPropertyAnimator rotation(float value) { method in class:ViewPropertyAnimator
417 animateProperty(ROTATION, value);
422 * This method will cause the View's <code>rotation</code> property to be animated by the
430 animatePropertyBy(ROTATION, value);
733 case ROTATION:
773 case ROTATION:
    [all...]
  /packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/
VideoChatTestActivity.java 117 int rotation = getWindowManager().getDefaultDisplay().getRotation(); local
119 switch (rotation) {
401 int rotation = setDisplayOrentationAngles.get(i); local
402 if (rotation == -1) {
403 rotation = getAutoDisplayOrientation(mDisplayOrientation,
406 publishProgress("setDisplayOrientation to " + rotation);
408 camera.setDisplayOrientation(rotation);
  /external/qemu/distrib/sdl-1.2.12/src/video/windib/
SDL_dibvideo.c 579 DWORD rotation; local
584 rotation = settings.dmDisplayOrientation;
589 switch( rotation )
598 if( settings.dmDisplayOrientation != rotation )
601 this->hidden->origRotation = rotation;
608 switch( rotation )
617 if( settings.dmDisplayOrientation != rotation )
620 this->hidden->origRotation = rotation;
    [all...]
  /frameworks/base/libs/hwui/
DisplayListRenderer.cpp 275 float rotation = getFloat(); local
276 LOGD("%s%s %.2f", (char*) indent, OP_NAMES[op], rotation);
607 float rotation = getFloat(); local
608 DISPLAY_LIST_LOGD("%s%s %.2f", (char*) indent, OP_NAMES[op], rotation);
609 renderer.rotate(rotation);
    [all...]
  /frameworks/base/opengl/libagl/
matrix.cpp 333 matrixf_t rotation; local
334 GLfloat* r = rotation.m;
377 multiply(rotation);
  /packages/apps/Camera/src/com/android/camera/
Util.java 124 // horizontal flip + rotation = -rotation + horizontal flip
327 int rotation = activity.getWindowManager().getDefaultDisplay() local
329 switch (rotation) {
621 int rotation = 0; local
625 rotation = (info.orientation - orientation + 360) % 360;
627 rotation = (info.orientation + orientation) % 360;
630 parameters.setRotation(rotation);
  /bionic/libc/kernel/common/video/
dsscomp.h 205 __u8 rotation; member in struct:dss2_ovl_cfg
  /external/kernel-headers/original/video/
dsscomp.h 305 * rotation.
307 * 3) Rotation will not modify the output region, specifically
324 __u8 rotation; /* 0..3 (*90 degrees clockwise) */ member in struct:dss2_ovl_cfg
325 __u8 mirror; /* left-to-right: mirroring is applied after rotation */

Completed in 516 milliseconds

1 2 3