Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DWindowFrames.java102 public final Rect mStableFrame = new Rect(); field in WindowFrames
215 mStableFrame.set(stableFrame); in setFrames()
261 mTmpRect.intersectUnchecked(mStableFrame); in calculateDockedDividerInsets()
295 InsetUtils.insetsBetweenFrames(mTmpRect, mStableFrame, mStableInsets); in calculateInsets()
315 mStableFrame.offset(layoutXDiff, layoutYDiff); in offsetFrames()
DWindowState.java1044 mWindowFrames.mStableFrame.set(mWindowFrames.mContentFrame); in computeFrameLw()
1074 mWindowFrames.mStableFrame.set( in computeFrameLw()
1075 Math.max(mWindowFrames.mStableFrame.left, mWindowFrames.mFrame.left), in computeFrameLw()
1076 Math.max(mWindowFrames.mStableFrame.top, mWindowFrames.mFrame.top), in computeFrameLw()
1077 Math.min(mWindowFrames.mStableFrame.right, mWindowFrames.mFrame.right), in computeFrameLw()
1078 Math.min(mWindowFrames.mStableFrame.bottom, mWindowFrames.mFrame.bottom)); in computeFrameLw()
1171 return mWindowFrames.mStableFrame; in getStableFrameLw()
DDisplayPolicy.java1882 final Rect sf = windowFrames.mStableFrame; in layoutWindowLw()