Home | History | Annotate | Download | only in widget

Lines Matching defs:mTempRect

80     private final Rect mTempRect = new Rect();
370 mTempRect.setEmpty();
947 mTempRect.top = getScrollY() + height;
951 if (mTempRect.top + height > view.getBottom()) {
952 mTempRect.top = view.getBottom() - height;
956 mTempRect.top = getScrollY() - height;
957 if (mTempRect.top < 0) {
958 mTempRect.top = 0;
961 mTempRect.bottom = mTempRect.top + height;
963 return scrollAndFocus(direction, mTempRect.top, mTempRect.bottom);
982 mTempRect.top = 0;
983 mTempRect.bottom = height;
989 mTempRect.bottom = view.getBottom() + mPaddingBottom;
990 mTempRect.top = mTempRect.bottom - height;
994 return scrollAndFocus(direction, mTempRect.top, mTempRect.bottom);
1051 nextFocused.getDrawingRect(mTempRect);
1052 offsetDescendantRectToMyCoords(nextFocused, mTempRect);
1053 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
1105 descendant.getDrawingRect(mTempRect);
1106 offsetDescendantRectToMyCoords(descendant, mTempRect);
1108 return (mTempRect.bottom + delta) >= getScrollY()
1109 && (mTempRect.top - delta) <= (getScrollY() + height);
1290 child.getDrawingRect(mTempRect);
1293 offsetDescendantRectToMyCoords(child, mTempRect);
1295 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
1510 currentFocused.getDrawingRect(mTempRect);
1511 offsetDescendantRectToMyCoords(currentFocused, mTempRect);
1512 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);