Home | History | Annotate | Download | only in ui

Lines Matching refs:mTempRect

85     private final Rect mTempRect = new Rect();
160 mTrackDrawable.getPadding(mTempRect);
164 maxTextWidth * 2 + mThumbTextPadding * 4 + mTempRect.left + mTempRect.right);
204 mThumbDrawable.getPadding(mTempRect);
208 mTempRect.left + mTempRect.right + mTouchSlop;
387 mTrackDrawable.getPadding(mTempRect);
388 int switchInnerLeft = switchLeft + mTempRect.left;
389 int switchInnerTop = switchTop + mTempRect.top;
390 int switchInnerRight = switchRight - mTempRect.right;
391 int switchInnerBottom = switchBottom - mTempRect.bottom;
394 mThumbDrawable.getPadding(mTempRect);
396 int thumbLeft = switchInnerLeft - mTempRect.left + thumbPos;
397 int thumbRight = switchInnerLeft + thumbPos + mThumbWidth + mTempRect.right;
431 mTrackDrawable.getPadding(mTempRect);
432 return mSwitchWidth - mThumbWidth - mTempRect.left - mTempRect.right;