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

1 2 3

  /external/qemu/android/skin/
window.h 44 SkinRotation rotation,
63 SkinRotation rotation; member in struct:__anon10515
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) {
  /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/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/shapes/infos/
ChildCollisionShape.java 21 public Matrix3f rotation; field in class:ChildCollisionShape
27 public ChildCollisionShape(Vector3f location, Matrix3f rotation, CollisionShape shape) {
29 this.rotation = rotation;
36 capsule.write(rotation, "rotation", new Matrix3f());
43 rotation = (Matrix3f) capsule.readSavable("rotation", new Matrix3f());
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
Listener.java 42 private Quaternion rotation; field in class:Listener
49 rotation = new Quaternion();
55 rotation = source.rotation.clone();
78 return rotation;
86 return rotation.getRotationColumn(0);
90 return rotation.getRotationColumn(1);
94 return rotation.getRotationColumn(2);
103 public void setRotation(Quaternion rotation) {
104 this.rotation.set(rotation)
    [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 110 qemulator_fb_rotate( void* _emulator, int rotation )
465 SkinRotation rotation; local
470 rotation = skin_layout_get_dpad_rotation( layout );
473 skin_keyboard_set_rotation( emulator->keyboard, rotation );
476 skin_trackball_set_rotation( emulator->trackball, rotation );
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/
DebugShapeFactory.java 81 // apply rotation
86 childCollisionShape.rotation.mult(tempRot, tempRot);
  /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) {
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
OrientationManager.java 56 // This is true if "Settings -> Display -> Rotation Lock" is checked. We
200 int rotation = activity.getWindowManager().getDefaultDisplay() local
202 switch (rotation) {
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimationFactory.java 41 * you can add some keyFrames for a given time or a given keyFrameIndex, for translation rotation and scale.
58 * step for splitting rotation that have a n ange above PI/2
67 Translation, Rotation, Scale;
71 * Inner Rotation type class to kep track on a rotation Euler angle
73 protected class Rotation {
76 * The rotation Quaternion
78 Quaternion rotation = new Quaternion(); field in class:AnimationFactory.Rotation
80 * This rotation expressed in Euler angles
84 * the index of the parent key frame is this keyFrame is a splitted rotation
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
ObjectHelper.java 310 Quaternion rotation = localMatrix.toRotationQuat(); local
318 y = rotation.getY();
319 float z = rotation.getZ();
320 rotation.set(rotation.getX(), z, -y, rotation.getW());
328 Transform t = new Transform(translation, rotation);
367 Quaternion rotation = result.toRotationQuat(); local
374 y = rotation.getY();
375 float z = rotation.getZ();
    [all...]
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SkeletonLoader.java 79 private Quaternion rotation; field in class:SkeletonLoader
87 } else if (qName.equals("rotation") || qName.equals("rotate")) {
90 assert elementStack.peek().equals("rotation")
145 } else if (qName.equals("rotate") || qName.equals("rotation")) {
146 rotation = new Quaternion();
148 rotation.fromAngleNormalAxis(angle, axis);
152 bone.setBindTransforms(position, rotation, scale);
155 rotation = null;
182 assert rotation != null;
186 rotations.add(rotation);
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java 178 Quaternion rotation = pose.toRotationQuat(); local
181 bone.setBindTransforms(poseLocation, rotation, scale);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
CollisionShapeFactory.java 259 Matrix3f rotation = childCollisionShape.rotation; local
261 compoundShape.addChildShape(child, location.add(vector), rotation);
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Camera.java 130 protected Quaternion rotation; field in class:Camera
223 rotation = new Quaternion();
270 cam.rotation = rotation.clone();
297 rotation.set(cam.rotation);
590 * <code>getRotation</code> retrieves the rotation quaternion of the camera.
592 * @return the rotation of the camera.
595 return rotation;
606 return rotation.getRotationColumn(2)
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
DebugShapeFactory.java 90 // apply rotation
96 childCollisionShape.rotation.mult(tempRot, tempRot);
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestCustomAnim.java 57 private Quaternion rotation = new Quaternion(); field in class:TestCustomAnim
134 // Combine rotation with previous
135 rotation.multLocal(rotate);
137 // Set new rotation into bone
138 bone.setUserTransforms(Vector3f.ZERO, rotation, Vector3f.UNIT_XYZ);
  /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 1019 OMX_CONFIG_ROTATIONTYPE rotation; local
1031 OMX_INIT_STRUCT(rotation, OMX_CONFIG_ROTATIONTYPE);
1032 rotation.nRotation = degree;
1033 rotation.nPortIndex = mCameraAdapterParameters.mImagePortIndex;
1037 &rotation);
1040 CAMHAL_LOGEB("Error while configuring rotation 0x%x", eError);
    [all...]

Completed in 870 milliseconds

1 2 3