HomeSort by relevance Sort by last modified time
    Searched refs:rotation (Results 1 - 25 of 589) 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:__anon37655
13 r.rotation = 45;
14 fprintf (stderr, "%d\n", r.rotation);
  /frameworks/base/core/java/android/view/
IRotationWatcher.aidl 24 void onRotationChanged(int rotation);
  /external/chromium_org/athena/system/
orientation_controller.cc 45 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);
    [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/chromium_org/ui/base/cursor/
cursor_util.h 23 gfx::Display::Rotation rotation,
30 gfx::Display::Rotation rotation,
35 gfx::Display::Rotation rotation,
cursor_loader.h 22 gfx::Display::Rotation rotation() const { function in class:ui::CursorLoader
26 void set_rotation(gfx::Display::Rotation rotation) {
27 rotation_ = rotation;
68 // The current rotation of the mouse cursor icon.
69 gfx::Display::Rotation rotation_;
cursor_util.cc 19 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.
  /hardware/intel/img/psb_video/src/android/
psb_android_glue.h 41 int psb_android_surfaceflinger_status(void** surface, int *sf_compostion, int *rotation, int *widi);
46 int psb_android_surfaceflinger_rotate(void* window, int *rotation);
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/
scenes.js 23 body.rotation = {};
24 body.rotation.x = ( Math.random() * 360 ) * Math.PI / 180;
25 body.rotation.y = ( Math.random() * 360 ) * Math.PI / 180;
26 body.rotation.z = ( Math.random() * 360 ) * Math.PI / 180;
51 body.rotation = {};
52 body.rotation.x = ( Math.random() * 360 ) * Math.PI / 180;
53 body.rotation.y = ( Math.random() * 360 ) * Math.PI / 180;
54 body.rotation.z = ( Math.random() * 360 ) * Math.PI / 180;
94 body.rotation = {};
95 body.rotation.x = 0.0
    [all...]
  /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...]
  /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);
  /packages/apps/Camera2/src/com/android/camera/data/
VideoRotationMetadataLoader.java 17 final String rotation = localData.getMetadata().getString(ROTATION_KEY); local
18 return ROTATE_90.equals(rotation) || ROTATE_270.equals(rotation);
35 String rotation = retriever.extractMetadata( local
37 data.getMetadata().putString(ROTATION_KEY, rotation);
  /external/qemu/android/skin/
image.h 34 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/chromium_org/ui/gfx/
display.h 25 // Screen Rotation in clock-wise degrees.
26 enum Rotation {
74 Rotation rotation() const { return rotation_; } function in class:gfx::Display
75 void set_rotation(Rotation rotation) { rotation_ = rotation; }
77 void SetRotationAsDegree(int rotation);
127 Rotation rotation_;
  /external/deqp/framework/platform/android/
tcuAndroidUtil.hpp 49 ScreenOrientation mapScreenRotation (ScreenRotation 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/media/base/android/java/src/org/chromium/media/
VideoCaptureTango.java 111 int rotation = getDeviceOrientation(); local
112 if (rotation != mDeviceOrientation) {
113 mDeviceOrientation = rotation;
116 rotation = 360 - rotation;
118 rotation = (mCameraOrientation + rotation) % 360;
171 mFrameBuffer.capacity(), rotation);
  /external/chromium_org/pdf/pdfium/
pdfium_page.h 46 base::Value* GetAccessibleContentAsValue(int rotation);
66 Area GetCharIndex(const pp::Point& point, int rotation, int* char_index,
82 int rotation);
110 double right, double bottom, 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...]
  /packages/apps/Camera2/src/com/android/camera/
CaptureModuleUtil.java 38 int rotation = CameraUtil.getDisplayRotation(context); local
40 if (((rotation == Surface.ROTATION_0 || rotation == Surface.ROTATION_180) &&
42 ((rotation == Surface.ROTATION_90 || rotation == Surface.ROTATION_270) &&
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocommon.cc 159 int rotation,
162 if (rotation == 90 || rotation == 270) {
171 ASSERT(rotation == 0 || rotation == 90 || rotation == 180 || rotation == 270);

Completed in 770 milliseconds

1 2 3 4 5 6 7 8 91011>>