HomeSort by relevance Sort by last modified time
    Searched defs:mRotation (Results 1 - 25 of 25) sorted by null

  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
FixedRotationFilter.java 39 private int mRotation = 0;
62 if (mRotation == 0) {
80 switch (((int)Math.round(mRotation / 90f)) % 4) {
  /packages/apps/Gallery/src/com/android/camera/
RotateBitmap.java 25 private int mRotation;
29 mRotation = 0;
34 mRotation = rotation % 360;
38 mRotation = rotation;
42 return mRotation;
56 if (mRotation != 0) {
63 matrix.postRotate(mRotation);
70 return (mRotation / 90) % 2 != 0;
  /packages/apps/Gallery/src/com/android/camera/gallery/
Image.java 43 private int mRotation;
51 mRotation = rotation;
56 return mRotation;
60 if (mRotation == degrees) return;
61 mRotation = degrees;
63 values.put(ImageColumns.ORIENTATION, mRotation);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterStraighten.java 26 private float mRotation;
37 filter.mRotation = mRotation;
43 mRotation = rotation;
48 mRotation = rotation;
76 canvas.rotate(mRotation, mw, mh);
  /cts/tests/tests/graphics2/src/android/graphics2/cts/
TextureViewCameraActivity.java 47 private float mRotation = 0f;
104 mRotation += SCREEN_ROTATION_RATE;
105 transformMatrix.setRotate(mRotation, mWidth/2, mHeight/2);
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SceneGraphRS.java 37 int mRotation;
47 mRotation = 0;
79 mRotation -= dx;
80 if (mRotation > 360) {
81 mRotation -= 360;
83 if (mRotation < 0) {
84 mRotation += 360;
87 mScript.set_gRotate(-(float)mRotation);
  /packages/apps/Gallery2/src/com/android/photos/shims/
BitmapJobDrawable.java 43 private int mRotation = 0;
63 mRotation = mItem.getRotation();
90 canvas.rotate(mRotation, bounds.centerX(), bounds.centerY());
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
UriImage.java 57 private int mRotation;
102 mRotation = Exif.getOrientation(is);
124 mRotation = Exif.getOrientation(is);
296 return mRotation;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropObject.java 30 private float mRotation = 0;
87 mRotation = angle % 360;
88 mBoundedRect.setRotation(mRotation);
CropView.java 55 private int mRotation = 0;
106 || mRotation != rotation) {
107 mRotation = rotation;
112 mRotation = rotation;
179 mRotation = 0;
220 if (((mRotation < 0) ? -mRotation : mRotation) % 180 == 90) {
301 mRotation)) {
359 mScreenCropBounds, mCropObj.isFixedAspect(), decode(mCropObj.getSelectState(), mRotation));
    [all...]
CropActivity.java 365 int mRotation = 0;
394 mRotation = (rotation < 0) ? -rotation : rotation;
395 mRotation %= 360;
396 mRotation = 90 * (int) (mRotation / 90); // now mRotation is a multiple of 90
426 m.setRotate(mRotation);
446 if (mRotation > 0) {
448 m.setRotate(mRotation);
516 if (mRotation > 0)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
IWindowManagerImpl.java 51 private final int mRotation;
59 mRotation = rotation;
74 return mRotation;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMetadata.java 36 private float mRotation = 0;
92 if (mRotation != 0) {
111 mRotation = g.mRotation;
128 return mRotation;
177 mRotation = rotation;
212 && mRotation == d.mRotation
222 result = 31 * result + Float.floatToIntBits(mRotation);
234 + ",rotation=" + mRotation + ",flip=" + mFlip + ",straighten=
    [all...]
  /frameworks/base/libs/hwui/
DisplayList.h 215 if (rotation != mRotation) {
216 mRotation = rotation;
218 if (mRotation == 0.0f) {
227 return mRotation;
505 float mRotation, mRotationX, mRotationY;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 142 private float mRotation;
761 mMatrix.postRotate(-mRotation, getWidth() / 2, getHeight() / 2);
777 mMatrix.postRotate(mRotation, getWidth() / 2, getHeight() / 2);
907 mRotation += degrees;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageView.java 114 protected int mRotation;
188 layoutTiles(mCenterX, mCenterY, mScale, mRotation);
196 if (changeSize) layoutTiles(mCenterX, mCenterY, mScale, mRotation);
341 if (mRotation % 180 == 0) {
357 && mScale == scale && mRotation == rotation) return false;
361 mRotation = rotation;
401 layoutTiles(mCenterX, mCenterY, mScale, mRotation);
413 int rotation = mRotation;
PhotoView.java 593 private int mRotation;
630 mRotation = getPanoramaRotation();
632 mRotation = getCameraRotation();
634 mRotation = mModel.getImageRotation(0);
639 mSize.width = getRotated(mRotation, w, h);
640 mSize.height = getRotated(mRotation, h, w);
759 switch (mRotation) {
765 throw new RuntimeException(String.valueOf(mRotation));
767 mTileView.setPosition(x, y, scale, mRotation);
773 private int mRotation;
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageRenderer.java 105 protected int mRotation;
173 if (mRotation != rotation) {
174 mRotation = rotation;
248 getRange(range, mCenterX, mCenterY, mLevel, mScale, mRotation);
264 getRange(range[i - fromLevel], mCenterX, mCenterY, i, mRotation);
268 if (mRotation % 90 != 0) return;
389 int rotation = mRotation;
  /device/lge/mako/camera/QCamera/HAL/core/inc/
QCameraHWI.h 700 int mRotation;
  /device/lge/mako/camera/
QCameraHWI.h 711 int mRotation;
QualcommCameraHardware.h 606 int mRotation;
  /frameworks/av/media/libstagefright/
MPEG4Writer.cpp 292 int32_t mRotation;
    [all...]
  /frameworks/base/core/java/android/view/
View.java     [all...]
  /prebuilts/devtools/tools/lib/
uiautomatorviewer.jar 
  /frameworks/base/services/java/com/android/server/wm/
WindowManagerService.java 455 int mRotation = 0;
    [all...]

Completed in 561 milliseconds