Lines Matching defs:mFrame

224     final Rect mFrame = new Rect();
577 final int fw = mFrame.width();
578 final int fh = mFrame.height();
594 (int) (y + mAttrs.verticalMargin * ph), mFrame);
596 //System.out.println("Out: " + mFrame);
599 Gravity.applyDisplay(mAttrs.gravity, df, mFrame);
603 mContentFrame.set(Math.max(mContentFrame.left, mFrame.left),
604 Math.max(mContentFrame.top, mFrame.top),
605 Math.min(mContentFrame.right, mFrame.right),
606 Math.min(mContentFrame.bottom, mFrame.bottom));
608 mVisibleFrame.set(Math.max(mVisibleFrame.left, mFrame.left),
609 Math.max(mVisibleFrame.top, mFrame.top),
610 Math.min(mVisibleFrame.right, mFrame.right),
611 Math.min(mVisibleFrame.bottom, mFrame.bottom));
613 mStableFrame.set(Math.max(mStableFrame.left, mFrame.left),
614 Math.max(mStableFrame.top, mFrame.top),
615 Math.min(mStableFrame.right, mFrame.right),
616 Math.min(mStableFrame.bottom, mFrame.bottom));
618 mOverscanInsets.set(Math.max(mOverscanFrame.left - mFrame.left, 0),
619 Math.max(mOverscanFrame.top - mFrame.top, 0),
620 Math.max(mFrame.right - mOverscanFrame.right, 0),
621 Math.max(mFrame.bottom - mOverscanFrame.bottom, 0));
623 mContentInsets.set(mContentFrame.left - mFrame.left,
624 mContentFrame.top - mFrame.top,
625 mFrame.right - mContentFrame.right,
626 mFrame.bottom - mContentFrame.bottom);
628 mVisibleInsets.set(mVisibleFrame.left - mFrame.left,
629 mVisibleFrame.top - mFrame.top,
630 mFrame.right - mVisibleFrame.right,
631 mFrame.bottom - mVisibleFrame.bottom);
633 mStableInsets.set(Math.max(mStableFrame.left - mFrame.left, 0),
634 Math.max(mStableFrame.top - mFrame.top, 0),
635 Math.max(mFrame.right - mStableFrame.right, 0),
636 Math.max(mFrame.bottom - mStableFrame.bottom, 0));
638 mCompatFrame.set(mFrame);
653 if (mIsWallpaper && (fw != mFrame.width() || fh != mFrame.height())) {
666 + "): frame=" + mFrame.toShortString()
674 return mFrame;
820 bounds.set(mFrame);
1069 && (mFrame.top != mLastFrame.top
1070 || mFrame.left != mLastFrame.left)
1076 return mFrame.left <= 0 && mFrame.top <= 0 &&
1077 mFrame.right >= screenWidth && mFrame.bottom >= screenHeight;
1313 if (win.mFrame.left <= 0 && win.mFrame.top <= 0
1314 && win.mFrame.right >= displayInfo.appWidth
1315 && win.mFrame.bottom >= displayInfo.appHeight) {
1332 final Rect frame = mFrame;
1398 final Rect frame = mFrame;
1555 pw.print(prefix); pw.print("mFrame="); mFrame.printShortString(pw);