Lines Matching defs:mDrawable

49     private Drawable mDrawable;
65 mDrawable = dr;
86 if (mDrawable != null) {
87 mDrawable.setCallback(null);
90 mDrawable = dr;
115 return mDrawable;
150 if (mDrawable != null && mDrawable.canApplyTheme()) {
151 mDrawable.applyTheme(t);
226 if (mDrawable != null) {
227 mDrawable.draw(canvas);
235 | mDrawable.getChangingConfigurations();
240 return mDrawable != null && mDrawable.getPadding(padding);
246 return mDrawable != null ? mDrawable.getOpticalInsets() : Insets.NONE;
251 if (mDrawable != null) {
252 mDrawable.setHotspot(x, y);
258 if (mDrawable != null) {
259 mDrawable.setHotspotBounds(left, top, right, bottom);
265 if (mDrawable != null) {
266 mDrawable.getHotspotBounds(outRect);
275 final boolean changed = mDrawable != null && mDrawable.setVisible(visible, restart);
281 if (mDrawable != null) {
282 mDrawable.setAlpha(alpha);
288 return mDrawable != null ? mDrawable.getAlpha() : 255;
293 if (mDrawable != null) {
294 mDrawable.setColorFilter(colorFilter);
300 if (mDrawable != null) {
301 mDrawable.setTintList(tint);
307 if (mDrawable != null) {
308 mDrawable.setTintMode(tintMode);
314 return mDrawable != null && mDrawable.setLayoutDirection(layoutDirection);
319 return mDrawable != null ? mDrawable.getOpacity() : PixelFormat.TRANSPARENT;
324 return mDrawable != null && mDrawable.isStateful();
330 return mDrawable != null && mDrawable.hasFocusStateSpecified();
335 if (mDrawable != null && mDrawable.isStateful()) {
336 final boolean changed = mDrawable.setState(state);
347 return mDrawable != null && mDrawable.setLevel(level);
352 if (mDrawable != null) {
353 mDrawable.setBounds(bounds);
359 return mDrawable != null ? mDrawable.getIntrinsicWidth() : -1;
364 return mDrawable != null ? mDrawable.getIntrinsicHeight() : -1;
369 if (mDrawable != null) {
370 mDrawable.getOutline(outline);
391 if (mDrawable != null) {
392 mDrawable.mutate();
395 mState.mDrawableState = mDrawable != null ? mDrawable.getConstantState() : null;
420 if (mDrawable != null) {
421 mDrawable.clearMutated();