Home
last modified time | relevance | path

Searched refs:mCaptionInsets (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/taskview/
H A DTaskView.java76 private Insets mCaptionInsets; field in TaskView
185 mCaptionInsets = captionInsets; in setCaptionInsets()
255 if (mCaptionInsets != null) { in onComputeInternalInsets()
256 mTmpRect.inset(mCaptionInsets); in onComputeInternalInsets()
262 mBoundsOnScreen.top + mCaptionInsets.top)); in onComputeInternalInsets()
H A DTaskViewTaskController.java87 private Rect mCaptionInsets; field in TaskViewTaskController
471 if (mCaptionInsets != null && mCaptionInsets.equals(captionInsets)) { in setCaptionInsets()
474 mCaptionInsets = captionInsets; in setCaptionInsets()
481 if (mCaptionInsets != null) { in applyCaptionInsetsIfNeeded()
483 WindowInsets.Type.captionBar(), mCaptionInsets); in applyCaptionInsetsIfNeeded()
/aosp14/frameworks/base/core/java/android/view/
H A DViewRootImpl.java3047 if (mAttachInfo.mCaptionInsets.equals(captionFrame)) return false; in updateCaptionInsets()
3048 mAttachInfo.mCaptionInsets.set(captionFrame); in updateCaptionInsets()
H A DView.java30755 final Rect mCaptionInsets = new Rect(); field in View.AttachInfo