Lines Matching refs:outRect

5484      * Populates <code>outRect</code> with the hotspot bounds. By default,
5487 * @param outRect rect to populate with hotspot bounds
5490 public void getHotspotBounds(Rect outRect) {
5493 background.getHotspotBounds(outRect);
5495 getBoundsOnScreen(outRect);
6091 * @param outRect The output location
6094 public void getBoundsOnScreen(Rect outRect) {
6095 getBoundsOnScreen(outRect, false);
6101 * @param outRect The output location
6105 public void getBoundsOnScreen(Rect outRect, boolean clipToParent) {
6148 outRect.set((int) (position.left + 0.5f), (int) (position.top + 0.5f),
9690 * @param outRect Filled in with the visible display frame. If the view
9693 public void getWindowVisibleDisplayFrame(Rect outRect) {
9696 mAttachInfo.mSession.getDisplayFrame(mAttachInfo.mWindow, outRect);
9704 outRect.left += insets.left;
9705 outRect.top += insets.top;
9706 outRect.right -= insets.right;
9707 outRect.bottom -= insets.bottom;
9713 d.getRectSize(outRect);
10904 * @param outRect The (scrolled) drawing bounds of the view.
10906 public void getDrawingRect(Rect outRect) {
10907 outRect.left = mScrollX;
10908 outRect.top = mScrollY;
10909 outRect.right = mScrollX + (mRight - mLeft);
10910 outRect.bottom = mScrollY + (mBottom - mTop);
12166 * @param outRect The hit rectangle of the view.
12168 public void getHitRect(Rect outRect) {
12170 outRect.set(mLeft, mTop, mRight, mBottom);
12175 outRect.set((int) tmpRect.left + mLeft, (int) tmpRect.top + mTop,
15748 * @param outRect rectangle in which to place the clip bounds of the view
15752 public boolean getClipBounds(Rect outRect) {
15754 outRect.set(mClipBounds);