Home
last modified time | relevance | path

Searched refs:mLeftInset (Results 1 – 5 of 5) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/window/
H A DStatusBarWindowView.java41 private int mLeftInset = 0; field in StatusBarWindowView
54 mLeftInset = insets.left; in onApplyWindowInsets()
93 if (lp.rightMargin != mRightInset || lp.leftMargin != mLeftInset in applyMargins()
96 lp.leftMargin = mLeftInset; in applyMargins()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationShadeWindowView.java64 private int mLeftInset = 0; field in NotificationShadeWindowView
105 mLeftInset = 0; in onApplyWindowInsets()
109 mLeftInset = displayCutout.getSafeInsetLeft(); in onApplyWindowInsets()
112 mLeftInset = Math.max(insets.left, mLeftInset); in onApplyWindowInsets()
125 && (lp.rightMargin != mRightInset || lp.leftMargin != mLeftInset)) { in applyMargins()
127 lp.leftMargin = mLeftInset; in applyMargins()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/interaction/
H A DEdgeBackGestureHandler.java64 private int mLeftInset; field in EdgeBackGestureHandler
155 if (x > mEdgeWidth + mLeftInset && x < (mDisplaySize.x - mEdgeWidth - mRightInset)) { in isWithinTouchRegion()
181 boolean isOnLeftEdge = ev.getX() <= mEdgeWidth + mLeftInset; in onMotionEvent()
227 mLeftInset = leftInset; in setInsets()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/
H A DEdgeBackGestureHandler.java238 private int mLeftInset; field in EdgeBackGestureHandler
644 if (x > 2 * (mEdgeWidthLeft + mLeftInset) in isWithinInsets()
666 boolean withinRange = x < mEdgeWidthLeft + mLeftInset in isWithinTouchRegion()
673 boolean withinMinRange = x < mMLEnableWidth + mLeftInset in isWithinTouchRegion()
737 mEdgeWidthLeft + mLeftInset, in logGesture()
752 mIsOnLeftEdge = ev.getX() <= mEdgeWidthLeft + mLeftInset; in onMotionEvent()
777 mEdgeWidthLeft, mLeftInset, mEdgeWidthRight, mRightInset, mExcludeRegion)); in onMotionEvent()
885 mLeftInset = leftInset; in setInsets()
912 pw.println(" mLeftInset=" + mLeftInset); in dump()
H A DNavigationBarEdgePanel.java190 private int mLeftInset; field in NavigationBarEdgePanel
405 mLeftInset = leftInset; in setInsets()
817 int left = mIsLeftPanel ? mLeftInset : mDisplaySize.x - mRightInset - mLayoutParams.width; in updateSamplingRect()