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

1 2 3 4

  /frameworks/av/camera/ndk/impl/
ACameraCaptureSession.h 43 int mRotation = CAMERA3_STREAM_ROTATION_0;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/PathUtilityClasses/
Ring.java 28 private final float[] mRotation;
48 mRotation = rotation;
96 return mRotation;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/PoseProvider/
PoseData.java 49 public float mRotation[] = {
61 mRotation[0] = sixDoFSensorValues[0];
62 mRotation[1] = sixDoFSensorValues[1];
63 mRotation[2] = sixDoFSensorValues[2];
64 mRotation[3] = sixDoFSensorValues[3];
72 mRotation[0] = rotation[0];
73 mRotation[1] = rotation[1];
74 mRotation[2] = rotation[2];
75 mRotation[3] = rotation[3];
89 out[i] = mRotation[i]
    [all...]
  /external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/
BatchRunConfiguration.java 29 private final String mRotation;
36 mRotation = rotation;
46 mGlConfig, mRotation, mSurfaceType, mRequired);
60 return mRotation;
  /frameworks/av/camera/include/camera/camera2/
OutputConfiguration.h 70 return ( mRotation == other.mRotation &&
96 if (mRotation != other.mRotation) {
97 return mRotation < other.mRotation;
115 int mRotation;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
FixedRotationFilter.java 38 private int mRotation = 0;
61 if (mRotation == 0) {
79 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/WallpaperPicker/src/com/android/wallpaperpicker/common/
CropAndSetWallpaperTask.java 50 private int mRotation;
61 mRotation = rotation;
73 mCropBounds, mOutWidth, mOutHeight, mRotation);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVCameraPreview.java 39 private int mRotation;
63 mRotation = rotation;
132 mCamera.setDisplayOrientation(mRotation);
  /frameworks/base/services/core/java/com/android/server/wm/
CircularDisplayMask.java 53 private int mRotation;
110 switch (mRotation) {
150 if (mLastDW == dw && mLastDH == dh && mRotation == rotation) {
156 mRotation = rotation;
EmulatorDisplayOverlay.java 50 private int mRotation;
122 if (mLastDW == dw && mLastDH == dh && mRotation == rotation) {
128 mRotation = rotation;
  /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/view/src/android/view/cts/
TextureViewCameraActivity.java 49 private float mRotation = 0f;
112 mRotation += SCREEN_ROTATION_RATE;
113 transformMatrix.setRotate(mRotation, mWidth / 2, mHeight / 2);
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTMatrixF.cpp 511 PVRTMATRIXf mRotation, mTemp = mOut;
512 PVRTMatrixRotationZF(mRotation, 90.0f*PVRT_PIf/180.0f);
513 PVRTMatrixMultiplyF(mOut, mTemp, mRotation);
568 PVRTMATRIXf mRotation, mTemp = mOut;
569 PVRTMatrixRotationZF(mRotation, -90.0f*PVRT_PIf/180.0f);
570 PVRTMatrixMultiplyF(mOut, mTemp, mRotation);
614 PVRTMATRIXf mRotation, mTemp = mOut;
615 PVRTMatrixRotationZF(mRotation, -90.0f*PVRT_PIf/180.0f);
616 PVRTMatrixMultiplyF(mOut, mRotation, mTemp);
660 PVRTMATRIXf mRotation, mTemp = mOut
    [all...]
PVRTMatrixX.cpp 513 PVRTMATRIXx mRotation, mTemp = mOut;
514 PVRTMatrixRotationZX(mRotation, PVRTF2X(90.0f*PVRT_PIf/180.0f));
515 PVRTMatrixMultiplyX(mOut, mTemp, mRotation);
568 PVRTMATRIXx mRotation, mTemp = mOut;
569 PVRTMatrixRotationZX(mRotation, PVRTF2X(-90.0f*PVRT_PIf/180.0f));
570 PVRTMatrixMultiplyX(mOut, mTemp, mRotation);
621 PVRTMATRIXx mRotation, mTemp = mOut;
622 PVRTMatrixRotationZX(mRotation, PVRTF2X(-90.0f*PVRT_PIf/180.0f));
623 PVRTMatrixMultiplyX(mOut, mRotation, mTemp);
674 PVRTMATRIXx mRotation, mTemp = mOut
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/params/
OutputConfiguration.java 215 mRotation = rotation;
268 mRotation = ROTATION_0;
404 this.mRotation = other.mRotation;
430 mRotation = rotation;
484 return mRotation;
526 dest.writeInt(mRotation);
553 if (mRotation != other.mRotation ||
586 mRotation, mConfiguredSize.hashCode(), mConfiguredFormat, mConfiguredDataspace
    [all...]
  /frameworks/layoutlib/bridge/src/android/view/
RenderNode_Delegate.java 46 private float mRotation;
155 if (delegate != null && delegate.mRotation != rotation) {
156 delegate.mRotation = rotation;
166 return delegate.mRotation;
  /frameworks/support/design/base/android/support/design/widget/
CircularBorderDrawable.java 59 private float mRotation;
106 canvas.rotate(mRotation, rectF.centerX(), rectF.centerY());
146 if (rotation != mRotation) {
147 mRotation = rotation;
  /packages/apps/Camera2/src/com/android/camera/
CaptureLayoutHelper.java 53 private int mRotation = 0;
109 mRotation);
180 if (mRotation >= 180) {
193 if (mRotation >= 180) {
227 mRotation = rotation;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterRotateRepresentation.java 34 Rotation mRotation;
86 return mRotation;
90 switch(mRotation) {
92 mRotation = Rotation.NINETY;
95 mRotation = Rotation.ONE_EIGHTY;
98 mRotation = Rotation.TWO_SEVENTY;
101 mRotation = Rotation.ZERO;
107 mRotation = r.mRotation;
114 mRotation = rotation
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/
BitmapRegionTileSource.java 59 private final int mRotation;
69 mRotation = rotation;
121 return 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());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
SlashDrawable.java 61 private float mRotation;
97 if (mRotation == rotation) return;
98 mRotation = rotation;
158 m.setRotate(mRotation + DEFAULT_ROTATION, width / 2, height / 2);
163 m.setRotate(-mRotation - DEFAULT_ROTATION, width / 2, height / 2);
170 m.setRotate(mRotation + DEFAULT_ROTATION, width / 2, height / 2);
  /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 29 private float mRotation = 0;
86 mRotation = angle % 360;
87 mBoundedRect.setRotation(mRotation);

Completed in 340 milliseconds

1 2 3 4