Home | History | Annotate | Download | only in widget

Lines Matching defs:mThumb

46     private Drawable mThumb;
168 if (mThumb != null && thumb != mThumb) {
169 mThumb.setCallback(null);
188 (thumb.getIntrinsicWidth() != mThumb.getIntrinsicWidth()
189 || thumb.getIntrinsicHeight() != mThumb.getIntrinsicHeight())) {
194 mThumb = thumb;
217 return mThumb;
286 if (mThumb != null && (mHasThumbTint || mHasThumbTintMode)) {
287 mThumb = mThumb.mutate();
290 mThumb.setTintList(mThumbTintList);
294 mThumb.setTintMode(mThumbTintMode);
299 if (mThumb.isStateful()) {
300 mThumb.setState(getDrawableState());
508 return who == mThumb || who == mTickMark || super.verifyDrawable(who);
515 if (mThumb != null) {
516 mThumb.jumpToCurrentState();
533 final Drawable thumb = mThumb;
550 if (mThumb != null) {
551 mThumb.setHotspot(x, y);
560 final Drawable thumb = mThumb;
582 final Drawable thumb = mThumb;
671 if (mThumb != null) {
672 mThumb.setLayoutDirection(layoutDirection);
684 final Drawable thumbDrawable = mThumb;
733 if (mThumb != null) {
738 mThumb.draw(canvas);
747 int thumbHeight = mThumb == null ? 0 : mThumb.getIntrinsicHeight();
820 if (mThumb != null) {
822 invalidate(mThumb.getBounds());
1006 final Drawable thumb = mThumb;