Lines Matching refs:mState

54     private ClipState mState;
72 mState.mDrawable = drawable;
73 mState.mGravity = gravity;
74 mState.mOrientation = orientation;
90 mState.mDrawable = null;
112 mState.mDrawable = dr;
119 if (mState.mDrawable == null && (mState.mThemeAttrs == null
120 || mState.mThemeAttrs[R.styleable.ClipDrawable_drawable] == 0)) {
128 final ClipState state = mState;
150 final ClipState state = mState;
172 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme();
206 | mState.mChangingConfigurations
207 | mState.mDrawable.getChangingConfigurations();
213 return mState.mDrawable.getPadding(padding);
218 mState.mDrawable.setVisible(visible, restart);
224 mState.mDrawable.setAlpha(alpha);
229 return mState.mDrawable.getAlpha();
234 mState.mDrawable.setColorFilter(cf);
239 mState.mDrawable.setTintList(tint);
244 mState.mDrawable.setTintMode(tintMode);
249 return mState.mDrawable.getOpacity();
254 return mState.mDrawable.isStateful();
259 return mState.mDrawable.setState(state);
264 mState.mDrawable.setLevel(level);
271 mState.mDrawable.setBounds(bounds);
277 if (mState.mDrawable.getLevel() == 0) {
285 final int iw = 0; //mState.mDrawable.getIntrinsicWidth();
286 if ((mState.mOrientation & HORIZONTAL) != 0) {
290 final int ih = 0; //mState.mDrawable.getIntrinsicHeight();
291 if ((mState.mOrientation & VERTICAL) != 0) {
295 Gravity.apply(mState.mGravity, w, h, bounds, r, layoutDirection);
300 mState.mDrawable.draw(canvas);
307 return mState.mDrawable.getIntrinsicWidth();
312 return mState.mDrawable.getIntrinsicHeight();
317 if (mState.canConstantState()) {
318 mState.mChangingConfigurations = getChangingConfigurations();
319 return mState;
327 mState.mDrawable.setLayoutDirection(layoutDirection);
334 mState.mDrawable.mutate();
345 mState.mDrawable.clearMutated();
412 mState = new ClipState(state, this, res);