HomeSort by relevance Sort by last modified time
    Searched defs:mRotation (Results 1 - 13 of 13) 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);
  /cts/tests/tests/graphics2/src/android/graphics2/cts/
TextureViewCameraActivity.java 47 private float mRotation = 0f;
107 mRotation += SCREEN_ROTATION_RATE;
108 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/gallery3d/data/
UriImage.java 56 private int mRotation;
100 mRotation = Exif.getOrientation(is);
122 mRotation = Exif.getOrientation(is);
282 return mRotation;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeWindowManager.java 54 private final int mRotation;
59 mRotation = rotation;
72 return mRotation;
  /frameworks/base/libs/hwui/
DisplayListRenderer.h 209 if (rotation != mRotation) {
210 mRotation = rotation;
212 if (mRotation == 0.0f) {
514 float mRotation, mRotationX, mRotationY;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageView.java 115 protected int mRotation;
176 layoutTiles(mCenterX, mCenterY, mScale, mRotation);
184 if (changeSize) layoutTiles(mCenterX, mCenterY, mScale, mRotation);
328 if (mRotation % 180 == 0) {
344 && mScale == scale && mRotation == rotation) return false;
348 mRotation = rotation;
389 layoutTiles(mCenterX, mCenterY, mScale, mRotation);
401 int rotation = mRotation;
PhotoView.java 545 private int mRotation;
584 mRotation = getPanoramaRotation();
586 mRotation = getCameraRotation();
588 mRotation = mModel.getImageRotation(0);
593 mSize.width = getRotated(mRotation, w, h);
594 mSize.height = getRotated(mRotation, h, w);
726 switch (mRotation) {
732 throw new RuntimeException(String.valueOf(mRotation));
734 mTileView.setPosition(x, y, scale, mRotation);
740 private int mRotation;
    [all...]
  /frameworks/av/media/libstagefright/
MPEG4Writer.cpp 212 int32_t mRotation;
1138 mRotation(0) {
    [all...]
  /frameworks/base/core/java/android/view/
View.java     [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowManagerService.java 490 int mRotation = 0;
    [all...]

Completed in 366 milliseconds