Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/taskview/
DTaskView.java79 private Insets mCaptionInsets; field in TaskView
204 mCaptionInsets = captionInsets; in setCaptionInsets()
274 if (mCaptionInsets != null) { in onComputeInternalInsets()
275 mTmpRect.inset(mCaptionInsets); in onComputeInternalInsets()
281 mBoundsOnScreen.top + mCaptionInsets.top)); in onComputeInternalInsets()
DTaskViewTaskController.java106 private Rect mCaptionInsets; field in TaskViewTaskController
526 if (mCaptionInsets != null && mCaptionInsets.equals(captionInsets)) { in setCaptionInsets()
529 mCaptionInsets = captionInsets; in setCaptionInsets()
536 if (mCaptionInsets != null) { in applyCaptionInsetsIfNeeded()
538 WindowInsets.Type.captionBar(), mCaptionInsets, null /* boundingRects */); in applyCaptionInsetsIfNeeded()
/frameworks/base/core/java/android/view/
DView.java31817 final Rect mCaptionInsets = new Rect(); field in View.AttachInfo