Home | History | Annotate | Download | only in wm

Lines Matching refs:mBounds

60     private Rect mBounds = new Rect();
62 /** Whether mBounds is fullscreen */
92 // The {@link #mBounds} before the stack was forced to fullscreen. Will be restored as the
96 // Device rotation as of the last time {@link #mBounds} was set.
106 EventLog.writeEvent(EventLogTags.WM_STACK_CREATED, stackId, mBounds.left, mBounds.top,
107 mBounds.right, mBounds.bottom);
160 if (mBounds.equals(bounds) && oldFullscreen == mFullscreen && mRotation == rotation) {
166 mBounds.set(bounds);
173 out.set(mBounds);
190 Math.min((int)(mBounds.width() / density), serviceConfig.screenWidthDp);
192 Math.min((int)(mBounds.height() / density), serviceConfig.screenHeightDp);
215 mTmpRect2.set(mBounds);
218 mTmpRect2.top = mTmpRect.bottom - mBounds.right;
219 mTmpRect2.left = mBounds.top;
220 mTmpRect2.right = mTmpRect2.left + mBounds.height();
221 mTmpRect2.bottom = mTmpRect2.top + mBounds.width();
224 mTmpRect2.top = mTmpRect.bottom - mBounds.bottom;
225 mTmpRect2.left = mTmpRect.right - mBounds.right;
226 mTmpRect2.right = mTmpRect2.left + mBounds.width();
227 mTmpRect2.bottom = mTmpRect2.top + mBounds.height();
230 mTmpRect2.top = mBounds.left;
231 mTmpRect2.left = mTmpRect.right - mBounds.bottom;
232 mTmpRect2.right = mTmpRect2.left + mBounds.height();
233 mTmpRect2.bottom = mTmpRect2.top + mBounds.width();
256 mPreForceFullscreenBounds.set(mBounds);
486 mDimLayer.setBounds(mBounds);