Home | History | Annotate | Download | only in view

Lines Matching refs:mTempRect

72     private final Rect mTempRect = new Rect();
411 mTempRect.setEmpty();
1063 mTempRect.top = getScrollY() + height;
1067 if (mTempRect.top + height > view.getBottom()) {
1068 mTempRect.top = view.getBottom() - height;
1072 mTempRect.top = getScrollY() - height;
1073 if (mTempRect.top < 0) {
1074 mTempRect.top = 0;
1077 mTempRect.bottom = mTempRect.top + height;
1079 return scrollAndFocus(direction, mTempRect.top, mTempRect.bottom);
1098 mTempRect.top = 0;
1099 mTempRect.bottom = height;
1105 mTempRect.bottom = view.getBottom() + mPaddingBottom;
1106 mTempRect.top = mTempRect.bottom - height;
1110 return scrollAndFocus(direction, mTempRect.top, mTempRect.bottom);
1167 nextFocused.getDrawingRect(mTempRect);
1168 offsetDescendantRectToMyCoords(nextFocused, mTempRect);
1169 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
1230 descendant.getDrawingRect(mTempRect);
1231 offsetDescendantRectToMyCoords(descendant, mTempRect);
1233 return (mTempRect.right + delta) >= getScrollX()
1234 && (mTempRect.left - delta) <= (getScrollX() + height);
1236 return (mTempRect.bottom + delta) >= getScrollY()
1237 && (mTempRect.top - delta) <= (getScrollY() + height);
1481 child.getDrawingRect(mTempRect);
1484 offsetDescendantRectToMyCoords(child, mTempRect);
1485 scrollToChildRect(mTempRect, true);
1761 currentFocused.getDrawingRect(mTempRect);
1762 offsetDescendantRectToMyCoords(currentFocused, mTempRect);
1763 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);