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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/ash/system/chromeos/
tray_display.cc 130 if (display_info.rotation() != gfx::Display::ROTATE_0 ||
263 return display_info.rotation() != gfx::Display::ROTATE_0 ||
376 if (iter->second.rotation() != old_iter->second.rotation()) {
378 switch (iter->second.rotation()) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextQuery.cpp 414 , rotation(0)
419 float rotation;
434 data->rotation = 0;
437 data->rotation = narrowPrecisionToFloat(rad2deg(atan2(fragmentTransform.b(), fragmentTransform.a())));
450 return data.rotation;
  /external/qemu/android/
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/qemu/android/skin/
keyboard.c 50 SkinRotation rotation; member in struct:SkinKeyboard
77 SkinRotation rotation )
79 keyboard->rotation = (rotation & 3);
183 switch (keyboard->rotation) {
trackball.c 190 /* rotation applied to events send to the system */
191 SkinRotation rotation; member in struct:SkinTrackBall
227 ball->rotation = SKIN_ROTATION_0;
430 switch (ball->rotation) {
623 skin_trackball_set_rotation( SkinTrackBall* ball, SkinRotation rotation )
625 ball->rotation = rotation & 3;
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
TiledImageRenderer.java 191 public void setModel(TileSource model, int rotation) {
196 if (mRotation != rotation) {
197 mRotation = rotation;
296 // If rotation is transient, don't update the tile.
349 private void getRange(Rect out, int cX, int cY, int level, int rotation) {
350 getRange(out, cX, cY, level, 1f / (1 << (level + 1)), rotation);
360 int cX, int cY, int level, float scale, int rotation) {
362 double radians = Math.toRadians(-rotation);
421 int rotation = mRotation; local
423 if (rotation != 0)
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageRenderer.java 191 public void setModel(TileSource model, int rotation) {
196 if (mRotation != rotation) {
197 mRotation = rotation;
296 // If rotation is transient, don't update the tile.
349 private void getRange(Rect out, int cX, int cY, int level, int rotation) {
350 getRange(out, cX, cY, level, 1f / (1 << (level + 1)), rotation);
360 int cX, int cY, int level, float scale, int rotation) {
362 double radians = Math.toRadians(-rotation);
421 int rotation = mRotation; local
423 if (rotation != 0)
    [all...]
  /packages/apps/Launcher3/src/com/android/photos/views/
TiledImageRenderer.java 191 public void setModel(TileSource model, int rotation) {
196 if (mRotation != rotation) {
197 mRotation = rotation;
296 // If rotation is transient, don't update the tile.
349 private void getRange(Rect out, int cX, int cY, int level, int rotation) {
350 getRange(out, cX, cY, level, 1f / (1 << (level + 1)), rotation);
360 int cX, int cY, int level, float scale, int rotation) {
362 double radians = Math.toRadians(-rotation);
421 int rotation = mRotation; local
423 if (rotation != 0)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/display/
display_preferences_unittest.cc 235 int rotation = 0; local
236 EXPECT_TRUE(property->GetInteger("rotation", &rotation));
238 EXPECT_EQ(1, rotation);
257 EXPECT_TRUE(property->GetInteger("rotation", &rotation));
259 EXPECT_EQ(0, rotation);
475 EXPECT_EQ(gfx::Display::ROTATE_90, primary_display.rotation());
483 EXPECT_EQ(gfx::Display::ROTATE_90, info_primary.rotation());
  /hardware/ti/omap4xxx/hwc/
hwc.c 64 __u8 rotation : 3; /* 90-degree clockwise rotations */ member in struct:ext_transform_t
65 __u8 hflip : 1; /* flip l-r (after rotation) */
102 EXT_ROTATION = 3, /* rotation while mirroring */
103 EXT_HFLIP = (1 << 2), /* flip l-r on output (after rotation) */
221 c->rotation, c->mirror ? "+mir" : "",
467 oc->rotation = 2;
471 oc->rotation += oc->mirror ? -1 : 1;
472 oc->rotation &= 3;
572 m_rotate(ext->m, ext->current.rotation);
576 if (ext->current.rotation & 1)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gmail/
background.js 13 var rotation = 0; variable
223 rotation += 1/animationFrames;
226 if (rotation <= 1) {
229 rotation = 0;
240 canvasContext.rotate(2*Math.PI*ease(rotation));
  /packages/apps/LegacyCamera/src/com/android/camera/
Util.java 124 // horizontal flip + rotation = -rotation + horizontal flip
327 int rotation = activity.getWindowManager().getDefaultDisplay() local
329 switch (rotation) {
621 int rotation = 0; local
625 rotation = (info.orientation - orientation + 360) % 360;
627 rotation = (info.orientation + orientation) % 360;
630 parameters.setRotation(rotation);
  /external/chromium_org/ui/gfx/
interpolated_transform.cc 30 // |rotation| is NULL. It does not affect |rotation| in this case. Otherwise
31 // *rotation is set to be the appropriate sanitized rotation matrix. That is,
32 // the rotation matrix corresponding to |degrees| which has entries that are all
34 bool MassageRotationIfMultipleOfNinetyDegrees(gfx::Transform* rotation,
36 if (!IsMultipleOfNinetyDegrees(degrees) || !rotation)
66 *rotation = transform;
  /frameworks/base/libs/hwui/
DisplayList.h 42 #define ROTATION 0x0002
220 void setRotation(float rotation) {
221 if (rotation != mRotation) {
222 mRotation = rotation;
225 mMatrixFlags &= ~ROTATION;
227 mMatrixFlags |= ROTATION;
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 117 return mRenderer.rotation;
142 mRotateMatrix.setRotate(mRenderer.rotation);
144 mInverseRotateMatrix.setRotate(-mRenderer.rotation);
  /packages/apps/Camera2/src/com/android/camera/crop/
CropDrawingUtils.java 174 RectF screen, int rotation) {
176 dst.setRotate(rotation, image.centerX(), image.centerY());
182 boolean rot = dst.preRotate(rotation, image.centerX(), image.centerY());
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropDrawingUtils.java 174 RectF screen, int rotation) {
176 dst.setRotate(rotation, image.centerX(), image.centerY());
182 boolean rot = dst.preRotate(rotation, image.centerX(), image.centerY());
  /packages/apps/Launcher3/src/com/android/launcher3/
CropView.java 117 return mRenderer.rotation;
142 mRotateMatrix.setRotate(mRenderer.rotation);
144 mInverseRotateMatrix.setRotate(-mRenderer.rotation);
  /external/chromium_org/ash/display/
display_manager.cc 278 gfx::Display::Rotation rotation) {
286 if (info.rotation() == rotation)
288 info.set_rotation(rotation);
338 gfx::Display::Rotation rotation,
347 display_info_[display_id].set_rotation(rotation);
553 (current_display.rotation() != new_display.rotation())) {
    [all...]
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_controller.cc 33 int rotation,
37 src, dest_yplane, width, height, rotation, flip_vert, flip_horiz);
41 src, dest_uplane, width/2, height/2, rotation, flip_vert, flip_horiz);
44 src, dest_vplane, width/2, height/2, rotation, flip_vert, flip_horiz);
264 int rotation,
269 (rotation == 0 && !flip_vert && !flip_horiz));
278 rotation);
296 rotation, flip_vert, flip_horiz);
302 rotation, flip_vert, flip_horiz);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videoframe.h 36 // Simple rotation constants.
61 int rotation) = 0;
96 // Indicates the rotation angle in degrees.
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
fakewebrtcdeviceinfo.h 92 webrtc::VideoCaptureRotation& rotation) {
webrtctexturevideoframe.h 59 int rotation);
  /external/chromium_org/third_party/mesa/src/docs/OLD/
MESA_sprite_point.spec 70 4. What about sprite rotation?
75 effectively specify image rotation per point.
  /external/eigen/Eigen/src/Geometry/
Transform.h 120 * \b Rotation R (Dim)x(Dim):
210 /** type of a read/write reference to the translation part of the rotation */
212 /** type of a read reference to the translation part of the rotation */
519 inline Transform& rotate(const RotationType& rotation);
522 inline Transform& prerotate(const RotationType& rotation);
549 const LinearMatrixType rotation() const;
551 void computeRotationScaling(RotationMatrixType *rotation, ScalingMatrixType *scaling) const;
553 void computeScalingRotation(ScalingMatrixType *scaling, RotationMatrixType *rotation) const;
998 Transform<Scalar,Dim,Mode,Options>::rotation() const function in class:Eigen::Transform
    [all...]

Completed in 1216 milliseconds

1 2 3 4 5 67 8 91011>>