Searched refs:mRotation (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/av/camera/include/camera/camera2/
H A DOutputConfiguration.h71 return ( mRotation == other.mRotation &&
98 if (mRotation != other.mRotation) {
99 return mRotation < other.mRotation;
121 int mRotation; member in class:android::hardware::camera2::params::OutputConfiguration
/frameworks/av/include/camera/camera2/
H A DOutputConfiguration.h71 return ( mRotation == other.mRotation &&
98 if (mRotation != other.mRotation) {
99 return mRotation < other.mRotation;
121 int mRotation; member in class:android::hardware::camera2::params::OutputConfiguration
/frameworks/base/core/java/android/hardware/camera2/params/
H A DOutputConfiguration.java259 mRotation = rotation;
313 mRotation = ROTATION_0;
519 this.mRotation = other.mRotation;
549 mRotation = rotation;
616 return mRotation;
658 dest.writeInt(mRotation);
686 if (mRotation != other.mRotation ||
719 mRotation, mConfiguredSiz
733 private final int mRotation; field in class:OutputConfiguration
[all...]
/frameworks/av/camera/camera2/
H A DOutputConfiguration.cpp40 return mRotation;
72 mRotation(INVALID_ROTATION),
82 mRotation(INVALID_ROTATION),
148 mRotation = rotation;
163 " physicalCameraId = %s", __FUNCTION__, mRotation, mSurfaceSetID,
172 mRotation = rotation;
183 err = parcel->writeInt32(mRotation);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DFixedRotationFilter.java38 private int mRotation = 0; field in class:FixedRotationFilter
61 if (mRotation == 0) {
79 switch (((int)Math.round(mRotation / 90f)) % 4) {
/frameworks/base/services/core/java/com/android/server/wm/
H A DEmulatorDisplayOverlay.java49 private int mRotation; field in class:EmulatorDisplayOverlay
118 if (mLastDW == dw && mLastDH == dh && mRotation == rotation) {
124 mRotation = rotation;
H A DCircularDisplayMask.java51 private int mRotation; field in class:CircularDisplayMask
108 switch (mRotation) {
148 if (mLastDW == dw && mLastDH == dh && mRotation == rotation) {
154 mRotation = rotation;
H A DDisplayFrames.java117 public int mRotation; field in class:DisplayFrames
127 mRotation = info.rotation;
134 switch (mRotation) {
204 + " r=" + mRotation);
H A DTask.java69 private int mRotation; field in class:Task
294 mRotation = rotation;
515 if (mRotation == newRotation) {
531 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
H A DTaskStack.java103 private int mRotation; field in class:TaskStack
298 if (equivalentBounds(existing, bounds) && mRotation == rotation) {
308 mRotation = rotation;
436 if (mRotation == newRotation && mDensity == newDensity) {
471 if (mRotation == newRotation && mDensity == newDensity) {
484 mDisplayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
/frameworks/support/heifwriter/src/main/java/androidx/heifwriter/
H A DHeifWriter.java83 private final int mRotation; field in class:HeifWriter
136 private int mRotation = 0; field in class:HeifWriter.Builder
190 mRotation = rotation;
276 return new HeifWriter(mPath, mFd, mWidth, mHeight, mRotation, mGridEnabled, mQuality,
315 mRotation = rotation;
520 if (mRotation > 0) {
521 Log.d(TAG, "setting rotation: " + mRotation);
522 mMuxer.setOrientationHint(mRotation);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DSlashDrawable.java61 private float mRotation; field in class:SlashDrawable
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);
/frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
H A DCircularProgressDrawable.java118 private float mRotation; field in class:CircularProgressDrawable
399 canvas.rotate(mRotation, bounds.exactCenterX(), bounds.exactCenterY());
422 mRotation = rotation;
426 return mRotation;
626 float mRotation = 0f; field in class:CircularProgressDrawable.Ring
700 final float startAngle = (mStartTrim + mRotation) * 360;
701 final float endAngle = (mEndTrim + mRotation) * 360;
875 mRotation = rotation;
879 return mRotation;
933 mStartingRotation = mRotation;
[all...]
/frameworks/support/heifwriter/src/androidTest/java/androidx/heifwriter/
H A DHeifWriterTest.java266 final int mRotation; field in class:HeifWriterTest.TestConfig
283 mRotation = rotation;
298 int mRotation; field in class:HeifWriterTest.TestConfig.Builder
313 mRotation = 0;
331 mRotation = rotation;
372 mWidth, mHeight, mRotation, mQuality, mInputPath, mOutputPath, mBitmaps);
386 + ", mRotation " + mRotation
407 .setRotation(config.mRotation)
465 verifyResult(config.mOutputPath, width, height, config.mRotation, confi
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DHardwareUiLayout.java59 private int mRotation = ROTATION_NONE; field in class:HardwareUiLayout
104 if (mRotation == ROTATION_LANDSCAPE) {
106 } else if (mRotation == ROTATION_SEASCAPE) {
155 if (rotation != mRotation) {
156 rotate(mRotation, rotation);
157 mRotation = rotation;
H A DScreenDecorations.java91 private int mRotation; field in class:ScreenDecorations
129 mRotation = -1;
210 if (newRotation != mRotation) {
211 mRotation = newRotation;
226 if (mRotation == RotationUtils.ROTATION_NONE) {
231 } else if (mRotation == RotationUtils.ROTATION_LANDSCAPE) {
236 } else if (mRotation == RotationUtils.ROTATION_UPSIDE_DOWN) {
241 } else if (mRotation == RotationUtils.ROTATION_SEASCAPE) {
318 if (mRotation == RotationUtils.ROTATION_SEASCAPE
319 || mRotation
[all...]
/frameworks/av/camera/ndk/impl/
H A DACameraCaptureSession.h46 int mRotation = CAMERA3_STREAM_ROTATION_0; member in struct:ACaptureSessionOutput
/frameworks/layoutlib/bridge/src/android/view/
H A DRenderNode_Delegate.java46 private float mRotation; field in class:RenderNode_Delegate
155 if (delegate != null && delegate.mRotation != rotation) {
156 delegate.mRotation = rotation;
166 return delegate.mRotation;
H A DIWindowManagerImpl.java48 private final int mRotation; field in class:IWindowManagerImpl
55 mRotation = rotation;
69 return mRotation;
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/
H A DBitmapRegionTileSource.java162 private int mRotation; field in class:BitmapRegionTileSource.BitmapSource
173 mRotation = ExifInterface.getRotationForOrientationValue(ori.shortValue());
216 return mRotation;
371 private final int mRotation; field in class:BitmapRegionTileSource
381 mRotation = source.getRotation();
432 return mRotation;
/frameworks/base/services/tests/servicestests/src/com/android/server/policy/
H A DPhoneWindowManagerTestBase.java76 private int mRotation = ROTATION_0; field in class:PhoneWindowManagerTestBase
98 mRotation = rotation;
103 Pair<DisplayInfo, WmDisplayCutout> info = displayInfoAndCutoutForRotation(mRotation,
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DWallpaperCropActivity.java459 int mRotation; field in class:WallpaperCropActivity.BitmapCropTask
508 mRotation = rotation;
602 if (mRotation > 0) {
603 rotateMatrix.setRotate(mRotation);
604 inverseRotateMatrix.setRotate(-mRotation);
723 if (mOutWidth > 0 && mOutHeight > 0 || mRotation > 0) {
738 if (mRotation == 0) {
744 m2.setRotate(mRotation);
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java111 protected int mRotation; field in class:TiledImageRenderer
196 if (mRotation != rotation) {
197 mRotation = rotation;
277 getRange(range, mCenterX, mCenterY, mLevel, mScale, mRotation);
293 getRange(range[i - fromLevel], mCenterX, mCenterY, i, mRotation);
297 if (mRotation % 90 != 0) {
421 int rotation = mRotation;
/frameworks/base/libs/hwui/
H A DRenderProperties.h278 return RP_SET_AND_DIRTY(mPrimitiveFields.mRotation, rotation);
281 float getRotation() const { return mPrimitiveFields.mRotation; }
557 float mRotation = 0, mRotationX = 0, mRotationY = 0; member in struct:android::uirenderer::RenderProperties::PrimitiveFields
H A DRenderProperties.cpp201 mComputedFields.mTransformCamera.rotateZ(-mPrimitiveFields.mRotation);

Completed in 397 milliseconds

12