Home | History | Annotate | Download | only in widget

Lines Matching refs:mTempRect

110     private final Rect mTempRect = new Rect();
490 mTrackDrawable.getPadding(mTempRect);
493 maxTextWidth * 2 + mThumbTextPadding * 4 + mTempRect.left + mTempRect.right);
531 mThumbDrawable.getPadding(mTempRect);
535 mTempRect.left + mTempRect.right + mTouchSlop;
730 mTrackDrawable.getPadding(mTempRect);
731 int switchInnerLeft = switchLeft + mTempRect.left;
732 int switchInnerTop = switchTop + mTempRect.top;
733 int switchInnerRight = switchRight - mTempRect.right;
734 int switchInnerBottom = switchBottom - mTempRect.bottom;
737 mThumbDrawable.getPadding(mTempRect);
739 int thumbLeft = switchInnerLeft - mTempRect.left + thumbPos;
740 int thumbRight = switchInnerLeft + thumbPos + mThumbWidth + mTempRect.right;
790 mTrackDrawable.getPadding(mTempRect);
791 return mSwitchWidth - mThumbWidth - mTempRect.left - mTempRect.right;