Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/policy/
DBarController.java72 private final Rect mContentFrame = new Rect(); field in BarController
98 mContentFrame.set(frame); in setContentFrame()
164 return win == null || !win.isLetterboxedOverlappingWith(mContentFrame); in isTransparentAllowed()
347 pw.print(prefix); pw.print(" mContentFrame="); pw.println(mContentFrame); in dump()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowState.java435 private final Rect mContentFrame = new Rect(); field in WindowState
973 mContentFrame.set(contentFrame); in computeFrameLw()
989 mOutsets.set(Math.max(mContentFrame.left - mOutsetFrame.left, 0), in computeFrameLw()
990 Math.max(mContentFrame.top - mOutsetFrame.top, 0), in computeFrameLw()
991 Math.max(mOutsetFrame.right - mContentFrame.right, 0), in computeFrameLw()
992 Math.max(mOutsetFrame.bottom - mContentFrame.bottom, 0)); in computeFrameLw()
1003 final Rect limitFrame = task.inPinnedWindowingMode() ? mFrame : mContentFrame; in computeFrameLw()
1019 mContentFrame.set(mFrame); in computeFrameLw()
1020 mVisibleFrame.set(mContentFrame); in computeFrameLw()
1021 mStableFrame.set(mContentFrame); in computeFrameLw()
[all …]
/frameworks/base/core/java/android/service/voice/
DVoiceInteractionSession.java124 FrameLayout mContentFrame; field in VoiceInteractionSession
1087 mContentFrame = (FrameLayout)mRootView.findViewById(android.R.id.content); in ensureWindowCreated()
1414 mContentFrame.removeAllViews(); in setContentView()
1415 mContentFrame.addView(view, new FrameLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT)); in setContentView()
1416 mContentFrame.requestApplyInsets(); in setContentView()