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

1 2 3 4 5 6 7 8 91011>>

  /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/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.
image_cursors.cc 79 gfx::Display::Rotation ImageCursors::GetRotation() const {
86 return cursor_loader_->rotation();
93 } else if (cursor_loader_->rotation() == display.rotation() &&
98 cursor_loader_->set_rotation(display.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...]
  /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);
  /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);
pdfium_range.h 34 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/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);
  /external/chromium_org/mojo/examples/sample_app/
spinning_cube.cc 253 ESMatrix rotation; local
270 rotation.m[0][0] = (one_minus_cos * xx) + cos_angle;
271 rotation.m[0][1] = (one_minus_cos * xy) - zs;
272 rotation.m[0][2] = (one_minus_cos * zx) + ys;
273 rotation.m[0][3] = 0.0F;
275 rotation.m[1][0] = (one_minus_cos * xy) + zs;
276 rotation.m[1][1] = (one_minus_cos * yy) + cos_angle;
277 rotation.m[1][2] = (one_minus_cos * yz) - xs;
278 rotation.m[1][3] = 0.0F;
280 rotation.m[2][0] = (one_minus_cos * zx) - ys
    [all...]
  /external/chromium_org/ppapi/examples/compositor/
spinning_cube.cc 237 ESMatrix rotation; local
254 rotation.m[0][0] = (one_minus_cos * xx) + cos_angle;
255 rotation.m[0][1] = (one_minus_cos * xy) - zs;
256 rotation.m[0][2] = (one_minus_cos * zx) + ys;
257 rotation.m[0][3] = 0.0F;
259 rotation.m[1][0] = (one_minus_cos * xy) + zs;
260 rotation.m[1][1] = (one_minus_cos * yy) + cos_angle;
261 rotation.m[1][2] = (one_minus_cos * yz) - xs;
262 rotation.m[1][3] = 0.0F;
264 rotation.m[2][0] = (one_minus_cos * zx) - ys
    [all...]
  /external/chromium_org/ppapi/examples/gles2_spinning_cube/
spinning_cube.cc 253 ESMatrix rotation; local
270 rotation.m[0][0] = (one_minus_cos * xx) + cos_angle;
271 rotation.m[0][1] = (one_minus_cos * xy) - zs;
272 rotation.m[0][2] = (one_minus_cos * zx) + ys;
273 rotation.m[0][3] = 0.0F;
275 rotation.m[1][0] = (one_minus_cos * xy) + zs;
276 rotation.m[1][1] = (one_minus_cos * yy) + cos_angle;
277 rotation.m[1][2] = (one_minus_cos * yz) - xs;
278 rotation.m[1][3] = 0.0F;
280 rotation.m[2][0] = (one_minus_cos * zx) - ys
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_capture/
video_capture_impl.h 57 VideoCaptureRotation* rotation);
58 static int32_t RotationInDegrees(VideoCaptureRotation rotation,
73 virtual int32_t SetCaptureRotation(VideoCaptureRotation rotation);
video_capture_impl.cc 46 VideoCaptureRotation* rotation) {
49 *rotation = kCameraRotate0;
52 *rotation = kCameraRotate90;
55 *rotation = kCameraRotate180;
58 *rotation = kCameraRotate270;
66 int32_t VideoCaptureImpl::RotationInDegrees(VideoCaptureRotation rotation,
68 switch (rotation) {
343 int32_t VideoCaptureImpl::SetCaptureRotation(VideoCaptureRotation rotation) {
346 switch (rotation){
  /device/moto/shamu/camera/QCamera2/HAL3/
QCamera3HALHeader.h 75 cam_rotation_t rotation; member in struct:qcamera::__anon4169
  /external/chromium_org/athena/screen/public/
screen_manager.h 58 // Set screen rotation.
59 // TODO(flackr): Extract and use ash DisplayManager to set rotation
61 virtual void SetRotation(gfx::Display::Rotation rotation) = 0;
  /external/chromium_org/extensions/browser/api/system_display/
display_info_provider.cc 19 // Converts Rotation enum to integer.
20 int RotationToDegrees(gfx::Display::Rotation rotation) {
21 switch (rotation) {
46 unit->rotation = RotationToDegrees(display.rotation());
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoframe.h 53 int64 elapsed_time, int64 time_stamp, int rotation);
68 int64 time_stamp, int rotation);
77 int rotation);
115 int64 time_stamp, int rotation);
  /external/chromium_org/third_party/webrtc/modules/video_capture/android/
video_capture_android.h 31 virtual int32_t SetCaptureRotation(VideoCaptureRotation rotation);

Completed in 826 milliseconds

1 2 3 4 5 6 7 8 91011>>