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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
bug287260.c 5 signed int rotation : 10; member in struct:__anon30110
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/chromium_org/ash/display/
display_info_unittest.cc 19 EXPECT_EQ(gfx::Display::ROTATE_0, info.rotation());
26 EXPECT_EQ(gfx::Display::ROTATE_0, info.rotation());
32 EXPECT_EQ(gfx::Display::ROTATE_0, info.rotation());
38 EXPECT_EQ(gfx::Display::ROTATE_90, info.rotation());
44 EXPECT_EQ(gfx::Display::ROTATE_270, info.rotation());
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
VideoTrackDecoder.java 43 public void grabFrame(FrameImage2D outputVideoFrame, int rotation) {
51 copyFrameDataTo(outputVideoFrame, rotation);
87 protected static boolean needSwapDimension(int rotation) {
88 switch(rotation) {
96 throw new IllegalArgumentException("Unsupported rotation angle.");
104 * @param rotation The desired rotation of the frame
106 protected abstract void copyFrameDataTo(FrameImage2D outputVideoFrame, int rotation);
  /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;
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocommon.cc 152 int rotation,
160 ASSERT(rotation == 0 || rotation == 90 || rotation == 180 || rotation == 270);
179 if (rotation == 90 || rotation == 270) {
206 if (rotation == 90 || rotation == 270) {
  /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...]
  /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...]
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_buffer_pool.h 90 int rotation);
106 // Rotation in degrees of the buffer.
107 int rotation; member in struct:content::VideoCaptureBufferPool::Buffer
  /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);
  /frameworks/base/core/java/android/app/
IUiAutomationConnection.aidl 37 boolean setRotation(int rotation);
  /development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/
CardView.java 134 PropertyValuesHolder rotation = PropertyValuesHolder.ofFloat(View.ROTATION_Y, local
142 ObjectAnimator cardAnimator = ObjectAnimator.ofPropertyValuesHolder(this, rotation,
250 * Returns a rotation animation which rotates this card by some degree about
258 int rotation = cardFromTop * ROTATION_PER_CARD;
261 rotation = -rotation;
265 rotation = 0;
268 return ObjectAnimator.ofFloat(this, View.ROTATION, rotation);
272 * Returns a full rotation animator which rotates this card by 360 degree
    [all...]
  /external/chromium_org/ui/gfx/
display.h 21 // Screen Rotation in clock-wise degrees.
22 enum Rotation {
63 Rotation rotation() const { return rotation_; } function in class:gfx::Display
64 void set_rotation(Rotation rotation) { rotation_ = rotation; }
111 Rotation rotation_;

Completed in 1701 milliseconds

1 2 3 4 5 6 7 8 91011>>