Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DWindowState.java258 final Rect mStableFrame = new Rect(); field in WindowState
611 mStableFrame.set(sf); in computeFrameLw()
665 mStableFrame.set(Math.max(mStableFrame.left, mFrame.left), in computeFrameLw()
666 Math.max(mStableFrame.top, mFrame.top), in computeFrameLw()
667 Math.min(mStableFrame.right, mFrame.right), in computeFrameLw()
668 Math.min(mStableFrame.bottom, mFrame.bottom)); in computeFrameLw()
685 mStableInsets.set(Math.max(mStableFrame.left - mFrame.left, 0), in computeFrameLw()
686 Math.max(mStableFrame.top - mFrame.top, 0), in computeFrameLw()
687 Math.max(mFrame.right - mStableFrame.right, 0), in computeFrameLw()
688 Math.max(mFrame.bottom - mStableFrame.bottom, 0)); in computeFrameLw()