Home
last modified time | relevance | path

Searched refs:mDisplayOrientation (Results 1 – 13 of 13) sorted by relevance

/aosp12/packages/apps/Camera2/src/com/android/camera/ui/
H A DFaceView.java41 private int mDisplayOrientation; field in FaceView
111 mDisplayOrientation = orientation; in setDisplayOrientation()
160 if (((rh > rw) && ((mDisplayOrientation == 0) || (mDisplayOrientation == 180))) in onDraw()
161 … || ((rw > rh) && ((mDisplayOrientation == 90) || (mDisplayOrientation == 270)))) { in onDraw()
166 CameraUtil.prepareMatrix(mMatrix, mMirror, mDisplayOrientation, rw, rh); in onDraw()
/aosp12/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DFaceView.java36 private int mDisplayOrientation; field in FaceView
67 mDisplayOrientation = orientation; in setDisplayOrientation()
124 Util.prepareMatrix(mMatrix, mMirror, mDisplayOrientation, getWidth(), getHeight()); in onDraw()
/aosp12/frameworks/native/libs/input/
H A DInput.cpp447 mDisplayOrientation = displayOrientation; in initialize()
473 mDisplayOrientation = other->mDisplayOrientation; in copyFrom()
544 ? rotatePoint(mDisplayOrientation, coords->getX(), coords->getY()) in getHistoricalRawAxisValue()
545 : rotatePoint(mDisplayOrientation, coords->getX(), coords->getY(), mDisplayWidth, in getHistoricalRawAxisValue()
554 const vec2 relativeXy = rotatePoint(mDisplayOrientation, in getHistoricalRawAxisValue()
707 mDisplayOrientation = parcel->readUint32(); in readFromParcel()
769 parcel->writeUint32(mDisplayOrientation); in writeToParcel()
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
H A DSettingsValues.java63 public final int mDisplayOrientation; field in SettingsValues
215 mDisplayOrientation = res.getConfiguration().orientation; in SettingsValues()
289 return mDisplayOrientation == configuration.orientation; in hasSameOrientation()
432 sb.append("" + mDisplayOrientation); in dump()
/aosp12/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
H A DFocusOverlayManager.java86 private int mDisplayOrientation; field in FocusOverlayManager
158 mDisplayOrientation = displayOrientation; in setDisplayOrientation()
165 prepareMatrix(matrix, mMirror, mDisplayOrientation, in setMatrix()
/aosp12/packages/apps/Camera2/src/com/android/camera/
H A DFocusOverlayManager.java94 private int mDisplayOrientation; field in FocusOverlayManager
206 mDisplayOrientation = displayOrientation; in setDisplayOrientation()
212 mCoordinateTransformer = new CameraCoordinateTransformer(mMirror, mDisplayOrientation, in resetCoordinateTransformer()
H A DPhotoModule.java190 private int mDisplayOrientation; field in PhotoModule
743 mUI.onStartFaceDetection(mDisplayOrientation, isCameraFrontFacing()); in startFaceDetection()
1729 mDisplayOrientation = info.getPreviewOrientation(mDisplayRotation); in setDisplayOrientation()
1730 mUI.setDisplayOrientation(mDisplayOrientation); in setDisplayOrientation()
1732 mFocusManager.setDisplayOrientation(mDisplayOrientation); in setDisplayOrientation()
1739 mDisplayRotation + ":" + mDisplayOrientation); in setDisplayOrientation()
/aosp12/frameworks/av/services/audiopolicy/service/
H A DSpatializer.cpp479 mDisplayOrientation = physicalToLogicalAngle; in setDisplayOrientation()
481 mPoseController->setDisplayOrientation(mDisplayOrientation); in setDisplayOrientation()
672 mPoseController->setDisplayOrientation(mDisplayOrientation); in attachOutput()
H A DSpatializer.h318 float mDisplayOrientation GUARDED_BY(mLock) = kDisplayOrientationInvalid;
/aosp12/packages/apps/LegacyCamera/src/com/android/camera/
H A DCamera.java212 private int mDisplayOrientation; field in Camera
388 mirror, mDisplayOrientation); in initializeFirstTime()
531 mFaceView.setDisplayOrientation(mDisplayOrientation); in startFaceDetection()
1842 mDisplayOrientation = Util.getDisplayOrientation(mDisplayRotation, mCameraId); in setDisplayOrientation()
1843 mCameraDevice.setDisplayOrientation(mDisplayOrientation); in setDisplayOrientation()
1845 mFaceView.setDisplayOrientation(mDisplayOrientation); in setDisplayOrientation()
/aosp12/frameworks/native/include/input/
H A DInput.h580 uint32_t getDisplayOrientation() const { return mDisplayOrientation; } in getDisplayOrientation()
817 uint32_t mDisplayOrientation; variable
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java771 if (settingsValues.mDisplayOrientation != conf.orientation) { in onConfigurationChanged()
976 Settings.getInstance().getCurrent().mDisplayOrientation, in onStartInputViewInternal()
/aosp12/frameworks/native/services/inputflinger/tests/
H A DInputDispatcher_test.cpp1283 mRawYCursorPosition, mDisplayOrientation, mDisplayWidth, mDisplayHeight, in build()
1300 uint32_t mDisplayOrientation{ui::Transform::ROT_0}; member in android::inputdispatcher::MotionEventBuilder