Lines Matching defs:mFrame

209     final Rect mFrame = new Rect();
530 final int fw = mFrame.width();
531 final int fh = mFrame.height();
547 (int) (y + mAttrs.verticalMargin * ph), mFrame);
549 //System.out.println("Out: " + mFrame);
552 Gravity.applyDisplay(mAttrs.gravity, df, mFrame);
556 mContentFrame.set(Math.max(mContentFrame.left, mFrame.left),
557 Math.max(mContentFrame.top, mFrame.top),
558 Math.min(mContentFrame.right, mFrame.right),
559 Math.min(mContentFrame.bottom, mFrame.bottom));
561 mVisibleFrame.set(Math.max(mVisibleFrame.left, mFrame.left),
562 Math.max(mVisibleFrame.top, mFrame.top),
563 Math.min(mVisibleFrame.right, mFrame.right),
564 Math.min(mVisibleFrame.bottom, mFrame.bottom));
566 mOverscanInsets.set(Math.max(mOverscanFrame.left - mFrame.left, 0),
567 Math.max(mOverscanFrame.top - mFrame.top, 0),
568 Math.max(mFrame.right - mOverscanFrame.right, 0),
569 Math.max(mFrame.bottom - mOverscanFrame.bottom, 0));
571 mContentInsets.set(mContentFrame.left - mFrame.left,
572 mContentFrame.top - mFrame.top,
573 mFrame.right - mContentFrame.right,
574 mFrame.bottom - mContentFrame.bottom);
576 mVisibleInsets.set(mVisibleFrame.left - mFrame.left,
577 mVisibleFrame.top - mFrame.top,
578 mFrame.right - mVisibleFrame.right,
579 mFrame.bottom - mVisibleFrame.bottom);
581 mCompatFrame.set(mFrame);
595 if (mIsWallpaper && (fw != mFrame.width() || fh != mFrame.height())) {
605 + "): frame=" + mFrame.toShortString()
612 return mFrame;
734 return mFrame;
974 && (mFrame.top != mLastFrame.top
975 || mFrame.left != mLastFrame.left)
981 return mFrame.left <= 0 && mFrame.top <= 0 &&
982 mFrame.right >= screenWidth && mFrame.bottom >= screenHeight;
1211 if (win.mFrame.left <= 0 && win.mFrame.top <= 0
1212 && win.mFrame.right >= displayInfo.appWidth
1213 && win.mFrame.bottom >= displayInfo.appHeight) {
1230 final Rect frame = mFrame;
1394 pw.print(prefix); pw.print("mFrame="); mFrame.printShortString(pw);