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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/ui/gfx/image/
image_skia_operations.h 91 // Creates an image which is a rotation of the |source|. |rotation| is the
92 // amount of clockwise rotation in degrees.
95 SkBitmapOperations::RotationAmount rotation);
  /external/chromium_org/ui/gfx/
skbitmap_operations.h 121 static SkBitmap Rotate(const SkBitmap& source, RotationAmount rotation);
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 63 /** type of a read/write reference to the translation part of the rotation */
65 /** type of a read/write reference to the translation part of the rotation */
205 inline Transform& rotate(const RotationType& rotation);
208 inline Transform& prerotate(const RotationType& rotation);
235 LinearMatrixType rotation() const;
237 void computeRotationScaling(RotationMatrixType *rotation, ScalingMatrixType *scaling) const;
239 void computeScalingRotation(ScalingMatrixType *scaling, RotationMatrixType *rotation) const;
454 /** Applies on the right the rotation represented by the rotation \a rotation
598 Transform<Scalar,Dim>::rotation() const function in class:Eigen::Transform
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsGhostObject.java 114 * Sets the physics object rotation
115 * @param rotation the rotation of the actual physics object
117 public void setPhysicsRotation(Matrix3f rotation) {
119 Converter.convert(rotation, tempTrans.basis);
124 * Sets the physics object rotation
125 * @param rotation the rotation of the actual physics object
127 public void setPhysicsRotation(Quaternion rotation) {
129 Converter.convert(rotation, tempTrans.basis)
    [all...]
  /external/qemu/android/skin/
rect.h 46 extern void skin_rect_rotate ( SkinRect* dst, SkinRect* src, SkinRotation rotation );
window.c 52 back->image = skin_image_rotate( sback->image, loc->rotation );
53 skin_rect_rotate( &r, &sback->rect, loc->rotation );
89 SkinRotation rotation; member in struct:ADisplay
109 skin_rect_rotate( &disp->rect, &sdisp->rect, loc->rotation );
113 disp->rotation = (loc->rotation + sdisp->rotation) & 3;
114 switch (disp->rotation) {
134 skin_size_rotate( &disp->datasize, &sdisp->rect.size, sdisp->rotation );
173 display_set_onion( ADisplay* disp, SkinImage* onion, SkinRotation rotation, int blend
    [all...]
file.c 93 display->rotation = aconfig_unsigned(node, "rotation", SKIN_ROTATION_0);
100 skin_rect_rotate( &r, &display->rect, -display->rotation );
286 SkinRotation rot = aconfig_int(node, "rotation", SKIN_ROTATION_0);
308 location->rotation = rot;
451 return loc->rotation;
528 node = aconfig_find( root, "dpad-rotation" );
530 layout->dpad_rotation = aconfig_int( root, "dpad-rotation", 0 );
592 location->rotation = SKIN_ROTATION_0;
600 location->rotation = SKIN_ROTATION_90
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardFaceUnlockView.java 58 public void onRotationChanged(int rotation) {
59 if (DEBUG) Log.d(TAG, "onRotationChanged(): " + mLastRotation + "->" + rotation);
61 // If the difference between the new rotation value and the previous rotation value is
62 // equal to 2, the rotation change was 180 degrees. This stops the biometric unlock
64 // since a 90 degree rotation is a configuration change, which takes care of this for
66 if (Math.abs(rotation - mLastRotation) == 2) {
72 mLastRotation = rotation;
127 Log.e(TAG, "Remote exception when removing rotation watcher");
144 Log.e(TAG, "Remote exception when removing rotation watcher")
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
AccessibilityNodeInfoDumper.java 48 * @param rotation The rotaion of current display
52 public static void dumpWindowToFile(AccessibilityNodeInfo root, int rotation,
63 rotation, width, height);
71 * @param rotation The rotaion of current display
75 public static void dumpWindowToFile(AccessibilityNodeInfo root, File dumpFile, int rotation,
88 serializer.attribute("", "rotation", Integer.toString(rotation));
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageView.java 206 private void layoutTiles(int centerX, int centerY, float scale, int rotation) {
224 getRange(range, centerX, centerY, mLevel, scale, rotation);
240 getRange(range[i - fromLevel], centerX, centerY, i, rotation);
243 // If rotation is transient, don't update the tile.
244 if (rotation % 90 != 0) return;
292 private void getRange(Rect out, int cX, int cY, int level, int rotation) {
293 getRange(out, cX, cY, level, 1f / (1 << (level + 1)), rotation);
303 int cX, int cY, int level, float scale, int rotation) {
305 double radians = Math.toRadians(-rotation);
355 public boolean setPosition(int centerX, int centerY, float scale, int rotation) {
413 int rotation = mRotation; local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
WallpaperCropActivity.java 99 int rotation = getRotationFromExif(this, imageUri); local
100 mCropView.setTileSource(new BitmapRegionTileSource(this, imageUri, 1024, rotation), null);
218 int rotation = getRotationFromExif(filePath); local
220 this, filePath, null, rotation, 0, 0, true, false, null);
240 int rotation = getRotationFromExif(res, resId); local
258 crop, rotation, outSize.x, outSize.y, true, false, onEndCrop);
389 RectF cropBounds, int rotation, int outWidth, int outHeight,
393 init(cropBounds, rotation,
398 RectF cropBounds, int rotation, int outWidth, int outHeight,
401 init(cropBounds, rotation,
    [all...]
WallpaperPickerActivity.java 135 int rotation = WallpaperCropActivity.getRotationFromExif(a, mUri); local
136 v.setTileSource(new BitmapRegionTileSource(a, mUri, 1024, rotation), null);
145 // rotation is set to 0 since imageBytes has already been correctly rotated
175 int rotation = WallpaperCropActivity.getRotationFromExif(mResources, mResId); local
177 mResources, a, mResId, 1024, rotation);
588 Resources res, int resId, int rotation, boolean leftAligned) {
595 context, uri, null, rotation, width, height, false, true, null);
598 imageBytes, null, rotation, width, height, false, true, null);
601 context, res, resId, null, rotation, width, height, false, true, null);
609 rotateMatrix.setRotate(rotation);
636 int rotation = WallpaperCropActivity.getRotationFromExif(this, uri); local
723 int rotation = WallpaperCropActivity.getRotationFromExif(res, resId); local
    [all...]
  /packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/
VideoChatTestActivity.java 117 int rotation = getWindowManager().getDefaultDisplay().getRotation(); local
119 switch (rotation) {
401 int rotation = setDisplayOrentationAngles.get(i); local
402 if (rotation == -1) {
403 rotation = getAutoDisplayOrientation(mDisplayOrientation,
406 publishProgress("setDisplayOrientation to " + rotation);
408 camera.setDisplayOrientation(rotation);
  /hardware/qcom/display/msm8974/liboverlay/
overlayUtils.cpp 186 int getMdpOrient(eTransform rotation) {
192 ALOGD_IF(DEBUG_OVERLAY, "%s: In rotation = %d", __FUNCTION__, rotation);
193 if(rotation & OVERLAY_TRANSFORM_ROT_90) {
198 if(rotation & OVERLAY_TRANSFORM_FLIP_H) {
207 if(rotation & OVERLAY_TRANSFORM_FLIP_V) {
216 ALOGD_IF(DEBUG_OVERLAY, "%s: Out rotation = %d", __FUNCTION__, retTrans);
230 // Use-case: Video playback [with downscaling and rotation].
  /external/chromium_org/chrome/browser/extensions/api/system_display/
display_info_provider_chromeos_unittest.cc 102 EXPECT_EQ(0, result[0]->rotation);
120 EXPECT_EQ(0, result[1]->rotation);
141 EXPECT_EQ(90, result[0]->rotation);
151 EXPECT_EQ(270, result[0]->rotation);
161 EXPECT_EQ(180, result[0]->rotation);
171 EXPECT_EQ(0, result[0]->rotation);
688 info.rotation.reset(new int(90));
699 EXPECT_EQ(gfx::Display::ROTATE_90, secondary.rotation());
701 info.rotation.reset(new int(270));
709 EXPECT_EQ(gfx::Display::ROTATE_270, secondary.rotation());
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java 278 int rotation = getRotationFromExif(filePath); local
280 this, filePath, null, rotation, 0, 0, true, false, null);
300 int rotation = getRotationFromExif(res, resId); local
318 crop, rotation, outSize.x, outSize.y, true, false, onEndCrop);
423 RectF cropBounds, int rotation, int outWidth, int outHeight,
427 init(cropBounds, rotation,
432 RectF cropBounds, int rotation, int outWidth, int outHeight,
435 init(cropBounds, rotation,
440 RectF cropBounds, int rotation, int outWidth, int outHeight,
444 init(cropBounds, rotation,
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsRigidBody.java 151 * Sets the physics object rotation
152 * @param rotation the rotation of the actual physics object
154 public void setPhysicsRotation(Matrix3f rotation) {
155 setPhysicsRotation(objectId, rotation);
158 private native void setPhysicsRotation(long objectId, Matrix3f rotation);
161 * Sets the physics object rotation
162 * @param rotation the rotation of the actual physics object
164 public void setPhysicsRotation(Quaternion rotation) {
    [all...]
  /external/pixman/demos/
scale.c 193 double rotation; local
208 rotation = gtk_adjustment_get_value (app->rotate_adjustment);
220 rotation = (rotation / 360.0) * 2 * M_PI;
221 pixman_f_transform_rotate (&ftransform, NULL, cos (rotation), sin (rotation));
  /packages/apps/Camera2/src/com/android/camera/crop/
CropView.java 112 public void initialize(Bitmap image, RectF newCropBounds, RectF newPhotoBounds, int rotation) {
118 || mRotation != rotation) {
119 mRotation = rotation;
124 mRotation = rotation;
273 private int decode(int movingEdges, float rotation) {
274 int rot = CropMath.constrainedRotation(rotation);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropView.java 113 public void initialize(Bitmap image, RectF newCropBounds, RectF newPhotoBounds, int rotation) {
119 || mRotation != rotation) {
120 mRotation = rotation;
125 mRotation = rotation;
274 private int decode(int movingEdges, float rotation) {
275 int rot = CropMath.constrainedRotation(rotation);
  /external/chromium_org/ash/display/
display_manager.h 127 // Sets the display's rotation.
128 void SetDisplayRotation(int64 display_id, gfx::Display::Rotation rotation);
139 gfx::Display::Rotation rotation,
148 // Tells if display rotation/ui scaling features are enabled.
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextureViewActivity.java 125 int rotation = getWindowManager().getDefaultDisplay().getRotation(); local
128 switch (rotation) {
  /hardware/samsung_slsi/exynos5/include/
fimg2d.h 91 enum rotation { enum
240 enum rotation rotate;
  /packages/apps/Gallery/src/com/android/camera/gallery/
Image.java 48 int rotation) {
51 mRotation = rotation;
  /device/asus/flo/camera/QCamera2/stack/common/
mm_jpeg_interface.h 140 /* rotation informaiton */
141 int rotation; member in struct:__anon1762

Completed in 1482 milliseconds

1 2 3 45 6 7 8 91011>>