Lines Matching refs:mBackground

3195     private Drawable mBackground;
6664 if (mBackground != null) mBackground.setVisible(visibility == VISIBLE, false);
9708 if (mBackground != null) {
11694 if (mBackground != null && mBackground.isProjected()) {
11728 return mBackground != null;
11883 if (mBackground != null && mBackground.getOpacity() == PixelFormat.OPAQUE) {
13200 if (mBackground != null && (!mLeftPaddingDefined || !mRightPaddingDefined)) {
13206 mBackground.getPadding(padding);
15325 final Drawable background = mBackground;
15828 if (mBackground != null) {
15829 mBackground.setLayoutDirection(layoutDirection);
15881 return who == mBackground;
15896 final Drawable d = mBackground;
15916 if (mBackground != null) {
15917 mBackground.setHotspot(x, y);
16068 if (mBackground != null) {
16069 mBackground.jumpToCurrentState();
16082 if (mBackground instanceof ColorDrawable) {
16083 ((ColorDrawable) mBackground.mutate()).setColor(color);
16135 if (background == mBackground) {
16147 if (mBackground != null) {
16148 mBackground.setCallback(null);
16149 unscheduleDrawable(mBackground);
16180 if (mBackground == null
16181 || mBackground.getMinimumHeight() != background.getMinimumHeight()
16182 || mBackground.getMinimumWidth() != background.getMinimumWidth()) {
16191 mBackground = background;
16202 mBackground = null;
16246 return mBackground;
16321 if (mBackground != null && mBackgroundTint != null) {
16324 mBackground = mBackground.mutate();
16327 mBackground.setTintList(tintInfo.mTintList);
16331 mBackground.setTintMode(tintInfo.mTintMode);
16559 return (mBackground == null) ? Insets.NONE : mBackground.getOpticalInsets();
17645 return (mBackground == null) ? mMinHeight : max(mMinHeight, mBackground.getMinimumHeight());
17661 return (mBackground == null) ? mMinWidth : max(mMinWidth, mBackground.getMinimumWidth());
17849 } else if ((pflags & PFLAG_ONLY_DRAWS_BACKGROUND) != 0 && mBackground != null &&
17850 mBackground.getOpacity() != PixelFormat.TRANSPARENT) {
17854 applyDrawableToTransparentRegion(mBackground, region);