Lines Matching refs:mCurrDrawable

59     private Drawable mCurrDrawable;
82 if (mCurrDrawable != null) {
83 mCurrDrawable.draw(canvas);
108 if (mCurrDrawable != null) {
109 result = mCurrDrawable.getPadding(padding);
128 if (mCurrDrawable != null) {
129 return mCurrDrawable.getOpticalInsets();
136 if (mCurrDrawable != null) {
137 mCurrDrawable.getOutline(outline);
146 if (mCurrDrawable != null) {
148 mCurrDrawable.setAlpha(alpha);
165 if (mCurrDrawable != null) {
166 mCurrDrawable.setDither(mDrawableContainerState.mDither);
178 if (mCurrDrawable != null) {
179 mCurrDrawable.setColorFilter(colorFilter);
191 if (mCurrDrawable != null) {
192 mCurrDrawable.setTintList(tint);
204 if (mCurrDrawable != null) {
205 mCurrDrawable.setTintMode(tintMode);
235 if (mCurrDrawable != null) {
236 mCurrDrawable.setBounds(bounds);
248 if (mCurrDrawable != null) {
249 return mCurrDrawable.hasFocusStateSpecified();
261 if (mCurrDrawable != null) {
262 mCurrDrawable.setAutoMirrored(mDrawableContainerState.mAutoMirrored);
281 if (mCurrDrawable != null) {
282 mCurrDrawable.jumpToCurrentState();
284 mCurrDrawable.setAlpha(mAlpha);
302 if (mCurrDrawable != null) {
303 mCurrDrawable.setHotspot(x, y);
315 if (mCurrDrawable != null) {
316 mCurrDrawable.setHotspotBounds(left, top, right, bottom);
334 if (mCurrDrawable != null) {
335 return mCurrDrawable.setState(state);
345 if (mCurrDrawable != null) {
346 return mCurrDrawable.setLevel(level);
363 return mCurrDrawable != null ? mCurrDrawable.getIntrinsicWidth() : -1;
371 return mCurrDrawable != null ? mCurrDrawable.getIntrinsicHeight() : -1;
379 return mCurrDrawable != null ? mCurrDrawable.getMinimumWidth() : 0;
387 return mCurrDrawable != null ? mCurrDrawable.getMinimumHeight() : 0;
399 if (who == mCurrDrawable && getCallback() != null) {
406 if (who == mCurrDrawable && getCallback() != null) {
413 if (who == mCurrDrawable && getCallback() != null) {
424 if (mCurrDrawable != null) {
425 mCurrDrawable.setVisible(visible, restart);
432 return mCurrDrawable == null || !mCurrDrawable.isVisible() ? PixelFormat.TRANSPARENT :
470 if (mCurrDrawable != null) {
471 mLastDrawable = mCurrDrawable;
479 } else if (mCurrDrawable != null) {
480 mCurrDrawable.setVisible(false, false);
485 mCurrDrawable = d;
494 mCurrDrawable = null;
573 if (mCurrDrawable != null) {
576 mCurrDrawable.setAlpha(mAlpha);
581 mCurrDrawable.setAlpha(((255-animAlpha)*mAlpha)/255);
613 return mCurrDrawable;
1229 mCurrDrawable = state.getChild(mCurIndex);
1230 if (mCurrDrawable != null) {
1231 initializeDrawableForDisplay(mCurrDrawable);