HomeSort by relevance Sort by last modified time
    Searched refs:mThemeAttrs (Results 1 - 15 of 15) sorted by null

  /frameworks/base/graphics/java/android/graphics/drawable/
ColorDrawable.java 248 state.mThemeAttrs = a.extractThemeAttrs();
264 if (state == null || state.mThemeAttrs == null) {
268 final TypedArray a = t.resolveAttributes(state.mThemeAttrs, R.styleable.ColorDrawable);
279 int[] mThemeAttrs;
292 mThemeAttrs = state.mThemeAttrs;
302 return mThemeAttrs != null;
ClipDrawable.java 119 if (mState.mDrawable == null && (mState.mThemeAttrs == null
120 || mState.mThemeAttrs[R.styleable.ClipDrawable_drawable] == 0)) {
134 state.mThemeAttrs = a.extractThemeAttrs();
151 if (state == null || state.mThemeAttrs == null) {
155 final TypedArray a = t.resolveAttributes(state.mThemeAttrs, R.styleable.ClipDrawable);
350 int[] mThemeAttrs;
363 mThemeAttrs = orig.mThemeAttrs;
382 return mThemeAttrs != null || (mDrawable != null && mDrawable.canApplyTheme())
StateListDrawable.java 142 state.mThemeAttrs = a.extractThemeAttrs();
323 int[] mThemeAttrs;
331 mThemeAttrs = orig.mThemeAttrs;
334 mThemeAttrs = null;
340 mThemeAttrs = mThemeAttrs != null ? mThemeAttrs.clone() : null;
377 return mThemeAttrs != null || super.canApplyTheme();
AnimatedRotateDrawable.java 287 if (state.mThemeAttrs != null) {
289 state.mThemeAttrs, R.styleable.AnimatedRotateDrawable);
314 state.mThemeAttrs = a.extractThemeAttrs();
366 if (mState.mDrawable == null && (mState.mThemeAttrs == null
367 || mState.mThemeAttrs[R.styleable.AnimatedRotateDrawable_drawable] == 0)) {
403 int[] mThemeAttrs;
429 mThemeAttrs = orig.mThemeAttrs;
452 return mThemeAttrs != null || (mDrawable != null && mDrawable.canApplyTheme())
InsetDrawable.java 127 if (mState.mDrawable == null && (mState.mThemeAttrs == null
128 || mState.mThemeAttrs[R.styleable.InsetDrawable_drawable] == 0)) {
142 state.mThemeAttrs = a.extractThemeAttrs();
189 if (state.mThemeAttrs != null) {
190 final TypedArray a = t.resolveAttributes(state.mThemeAttrs, R.styleable.InsetDrawable);
416 int[] mThemeAttrs;
431 mThemeAttrs = orig.mThemeAttrs;
452 return mThemeAttrs != null || (mDrawable != null && mDrawable.canApplyTheme())
RotateDrawable.java 430 if (state.mThemeAttrs != null) {
431 final TypedArray a = t.resolveAttributes(state.mThemeAttrs, R.styleable.RotateDrawable);
469 if (mState.mDrawable == null && (mState.mThemeAttrs == null
470 || mState.mThemeAttrs[R.styleable.ScaleDrawable_drawable] == 0)) {
484 state.mThemeAttrs = a.extractThemeAttrs();
533 int[] mThemeAttrs;
553 mThemeAttrs = orig.mThemeAttrs;
577 return mThemeAttrs != null || (mDrawable != null && mDrawable.canApplyTheme())
ScaleDrawable.java 118 if (state.mThemeAttrs != null) {
119 final TypedArray a = t.resolveAttributes(state.mThemeAttrs, R.styleable.ScaleDrawable);
156 if (mState.mDrawable == null && (mState.mThemeAttrs == null
157 || mState.mThemeAttrs[R.styleable.ScaleDrawable_drawable] == 0)) {
171 state.mThemeAttrs = a.extractThemeAttrs();
354 int[] mThemeAttrs;
369 mThemeAttrs = orig.mThemeAttrs;
390 return mThemeAttrs != null || (mDrawable != null && mDrawable.canApplyTheme())
VectorDrawable.java 372 if (state != null && state.mThemeAttrs != null) {
373 final TypedArray a = t.resolveAttributes(state.mThemeAttrs, R.styleable.VectorDrawable);
473 state.mThemeAttrs = a.extractThemeAttrs();
641 int[] mThemeAttrs;
662 mThemeAttrs = copy.mThemeAttrs;
730 && mCachedThemeAttrs == mThemeAttrs
743 mCachedThemeAttrs = mThemeAttrs;
753 return mThemeAttrs != null || (mVPathRenderer != null && mVPathRenderer.canApplyTheme())
    [all...]
ShapeDrawable.java 413 if (state == null || state.mThemeAttrs == null) {
417 final TypedArray a = t.resolveAttributes(state.mThemeAttrs, R.styleable.ShapeDrawable);
433 state.mThemeAttrs = a.extractThemeAttrs();
522 int[] mThemeAttrs;
536 mThemeAttrs = orig.mThemeAttrs;
553 return mThemeAttrs != null;
LayerDrawable.java 161 state.mThemeAttrs = a.extractThemeAttrs();
224 layer.mThemeAttrs = a.extractThemeAttrs();
251 if (state.mThemeAttrs != null) {
252 final TypedArray a = t.resolveAttributes(state.mThemeAttrs, R.styleable.LayerDrawable);
261 if (layer.mThemeAttrs != null) {
262 final TypedArray a = t.resolveAttributes(layer.mThemeAttrs,
336 childDrawable.mThemeAttrs = themeAttrs;
949 public int[] mThemeAttrs;
967 mThemeAttrs = orig.mThemeAttrs;
    [all...]
NinePatchDrawable.java 417 state.mThemeAttrs = a.extractThemeAttrs();
483 if (state == null || state.mThemeAttrs == null) {
487 final TypedArray a = t.resolveAttributes(state.mThemeAttrs, R.styleable.NinePatchDrawable);
499 return mNinePatchState != null && mNinePatchState.mThemeAttrs != null;
594 int[] mThemeAttrs = null;
636 mThemeAttrs = state.mThemeAttrs;
648 return mThemeAttrs != null;
BitmapDrawable.java 747 state.mThemeAttrs = a.extractThemeAttrs();
813 if (state == null || state.mThemeAttrs == null) {
817 final TypedArray a = t.resolveAttributes(state.mThemeAttrs, R.styleable.BitmapDrawable);
842 return mBitmapState != null && mBitmapState.mThemeAttrs != null;
876 int[] mThemeAttrs = null;
899 mThemeAttrs = bitmapState.mThemeAttrs;
913 return mThemeAttrs != null;
GradientDrawable.java     [all...]
  /frameworks/base/core/java/android/service/voice/
VoiceInteractionSession.java 73 TypedArray mThemeAttrs;
469 mThemeAttrs = mContext.obtainStyledAttributes(android.R.styleable.VoiceInteractionSession);
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 260 TypedArray mThemeAttrs;
705 mThemeAttrs = obtainStyledAttributes(android.R.styleable.InputMethodService);
    [all...]

Completed in 364 milliseconds