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

1 2 3 4 5 6 7 8 910

  /external/valgrind/main/memcheck/tests/
bug287260.c 5 signed int rotation : 10; member in struct:__anon17248
13 r.rotation = 45;
14 fprintf (stderr, "%d\n", r.rotation);
  /frameworks/base/core/java/android/view/
IRotationWatcher.aidl 24 void onRotationChanged(int rotation);
IMagnificationCallbacks.aidl 27 void onRotationChanged(int rotation);
  /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/opencv/cv/src/
cvposit.cpp 114 CvMatr32f rotation, CvVect32f translation )
135 if( !rotation )
165 float tmp = objectVectors[i] * rotation[6] /*[2][0]*/ +
166 objectVectors[N + i] * rotation[7] /*[2][1]*/ +
167 objectVectors[2 * N + i] * rotation[8] /*[2][2]*/;
189 rotation[3*i+j] /*[i][j]*/ = 0;
192 rotation[3*i+j] /*[i][j]*/ += invMatrix[j * N + k] * imgVectors[i * N + k];
197 inorm = rotation[0] /*[0][0]*/ * rotation[0] /*[0][0]*/ +
198 rotation[1] /*[0][1]*/ * rotation[1] /*[0][1]*/ +
    [all...]
  /external/qemu/android/
keycode.c 15 android_keycode_rotate( AndroidKeyCode code, int rotation )
26 index = (index + rotation) & 3;
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...]
  /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/bullet-native/
jmeMotionState.cpp 65 void jmeMotionState::setKinematicRotation(JNIEnv* env, jobject rotation) {
66 jmeBulletUtil::convert(env, rotation, &worldTransform.getBasis());
70 void jmeMotionState::setKinematicRotationQuat(JNIEnv* env, jobject rotation) {
71 jmeBulletUtil::convertQuat(env, rotation, &worldTransform.getBasis());
75 bool jmeMotionState::applyTransform(JNIEnv* env, jobject location, jobject rotation) {
80 jmeBulletUtil::convertQuat(env, &worldTransform.getBasis(), rotation);
jmeMotionState.h 56 bool applyTransform(JNIEnv* env, jobject location, jobject 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/skin/
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,
  /packages/apps/Gallery/src/com/android/camera/
RotateBitmap.java 32 public RotateBitmap(Bitmap bitmap, int rotation) {
34 mRotation = rotation % 360;
37 public void setRotation(int rotation) {
38 mRotation = rotation;
57 // We want to do the rotation at origin, but since the bounding
58 // rectangle will be changed after rotation, so the delta values
  /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;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowDisplay.java 25 private int rotation = Surface.ROTATION_0; field in class:ShadowDisplay
61 return rotation;
125 public void setRotation(int rotation) {
126 this.rotation = rotation;
  /frameworks/base/policy/src/com/android/internal/policy/impl/
WindowOrientationListener.java 136 * Sets the current rotation.
138 * @param rotation The current rotation.
140 public void setCurrentRotation(int rotation) {
142 mCurrentRotation = rotation;
147 * Gets the proposed rotation.
149 * This method only returns a rotation if the orientation listener is certain
150 * of its proposal. If the rotation is indeterminate, returns -1.
152 * @return The proposed rotation, or -1 if unknown.
173 * Called when the rotation view of the device has changed
    [all...]
  /frameworks/base/services/java/com/android/server/display/
DisplayDeviceInfo.java 37 * rotation of its associated logical display.
86 * This value is not affected by display rotation.
92 * This value is not affected by display rotation.
132 * The additional rotation to apply to all content presented on the display device
140 public int rotation = Surface.ROTATION_0; field in class:DisplayDeviceInfo
177 && rotation == other.rotation
197 rotation = other.rotation;
209 + ", rotation " + rotatio
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
MotionTrack.java 68 protected Quaternion rotation; field in class:MotionTrack
96 * The target rotates with the given rotation
98 Rotation,
202 oc.write(rotation, "rotation", Quaternion.IDENTITY);
213 rotation = (Quaternion) in.readSavable("rotation", Quaternion.IDENTITY);
239 if (rotation != null) {
242 q2.multLocal(rotation);
246 case Rotation
    [all...]
  /packages/apps/Gallery2/src/com/android/camera/ui/
CameraControls.java 127 int rotation = getUnifiedRotation(); local
143 switch (rotation) {
156 center(mShutter, l, t, r, b, orientation, rotation, shutter);
157 center(mBackgroundView, l, t, r, b, orientation, rotation, new Rect());
158 toLeft(mSwitcher, shutter, rotation);
159 toRight(mMenu, shutter, rotation);
160 toRight(mIndicators, shutter, rotation);
163 center(retake, shutter, rotation);
165 toLeft(cancel, shutter, rotation);
167 toRight(done, shutter, rotation);
175 int rotation = Util.getDisplayRotation((Activity) getContext()); local
327 int rotation = getUnifiedRotation(); local
    [all...]
CameraRootView.java 65 int rotation = Util.getDisplayRotation((Activity) getContext()); local
67 // adjust rotation for landscape
69 int camOrientation = (rotation % 180 == 0) ? Configuration.ORIENTATION_PORTRAIT
72 rotation = (rotation + 90) % 360;
79 switch (rotation) {
117 // so that they stay in place during rotation
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
CompoundCollisionShape.java 81 public void addChildShape(CollisionShape shape, Vector3f location, Matrix3f rotation) {
85 Transform transA = new Transform(Converter.convert(rotation));
87 Converter.convert(rotation, transA.basis);
88 children.add(new ChildCollisionShape(location.clone(), rotation.clone(), shape));
92 private void addChildShapeDirect(CollisionShape shape, Vector3f location, Matrix3f rotation) {
96 Transform transA = new Transform(Converter.convert(rotation));
98 Converter.convert(rotation, transA.basis);
146 addChildShapeDirect(child.shape, child.location, child.rotation);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DeviceMotionProviderQt.cpp 58 RefPtr<DeviceMotionData::RotationRate> rotation = DeviceMotionData::RotationRate::create( local
65 rotation,
  /frameworks/base/core/java/android/app/
IUiAutomationConnection.aidl 37 boolean setRotation(int rotation);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterStraighten.java 42 public ImageFilterStraighten(float rotation, float zoomFactor) {
43 mRotation = rotation;
47 public void setRotation(float rotation) {
48 mRotation = rotation;
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Bone.java 183 * Returns the local rotation of the bone, relative to the parent bone.
185 * @return The local rotation of the bone, relative to the parent bone.
210 * Returns the rotation of the bone in model space.
212 * @return The rotation of the bone in model space.
240 * Returns the inverse world bind pose rotation.
245 * @return the inverse world bind pose rotation.
276 * Returns the world bind pose rotation.
281 * @return the world bind pose rotation.
327 //rotation
336 //scale and rotation of parent affect bone position
    [all...]

Completed in 891 milliseconds

1 2 3 4 5 6 7 8 910