Lines Matching refs:mBackground

3360     private Drawable mBackground;
9597 final Drawable dr = mBackground;
10662 if (mBackground != null
12717 if (mBackground != null && mBackground.isProjected()) {
12751 return mBackground != null;
12906 if (mBackground != null && mBackground.getOpacity() == PixelFormat.OPAQUE) {
14290 if (mBackground != null && (!mLeftPaddingDefined || !mRightPaddingDefined)) {
14296 mBackground.getPadding(padding);
16347 final Drawable background = mBackground;
16384 if (mBackgroundSizeChanged && mBackground != null) {
16385 mBackground.setBounds(0, 0, mRight - mLeft, mBottom - mTop);
16873 if (mBackground != null) {
16874 mBackground.setLayoutDirection(layoutDirection);
16934 return who == mBackground || (mScrollCache != null && mScrollCache.scrollBar == who)
16953 final Drawable bg = mBackground;
16989 if (mBackground != null) {
16990 mBackground.setHotspot(x, y);
17161 if (mBackground != null) {
17162 mBackground.jumpToCurrentState();
17178 if (mBackground instanceof ColorDrawable) {
17179 ((ColorDrawable) mBackground.mutate()).setColor(color);
17231 if (background == mBackground) {
17243 if (mBackground != null) {
17244 mBackground.setCallback(null);
17245 unscheduleDrawable(mBackground);
17276 if (mBackground == null
17277 || mBackground.getMinimumHeight() != background.getMinimumHeight()
17278 || mBackground.getMinimumWidth() != background.getMinimumWidth()) {
17287 mBackground = background;
17297 mBackground = null;
17335 return mBackground;
17410 if (mBackground != null && mBackgroundTint != null) {
17413 mBackground = mBackground.mutate();
17416 mBackground.setTintList(tintInfo.mTintList);
17420 mBackground.setTintMode(tintInfo.mTintMode);
17425 if (mBackground.isStateful()) {
17426 mBackground.setState(getDrawableState());
17482 } else if ((mViewFlags & WILL_NOT_DRAW) != 0 && mBackground == null) {
17906 return (mBackground == null) ? Insets.NONE : mBackground.getOpticalInsets();
19007 return (mBackground == null) ? mMinHeight : max(mMinHeight, mBackground.getMinimumHeight());
19023 return (mBackground == null) ? mMinWidth : max(mMinWidth, mBackground.getMinimumWidth());
19214 if (mBackground != null && mBackground.getOpacity() != PixelFormat.TRANSPARENT) {
19217 applyDrawableToTransparentRegion(mBackground, region);