Searched refs:canApplyTheme (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/core/java/android/content/res/
H A DComplexColor.java52 public abstract boolean canApplyTheme(); method in class:ComplexColor
H A DColorStateList.java397 public boolean canApplyTheme() { method in class:ColorStateList
478 if (t == null || !canApplyTheme()) {
707 if (canApplyTheme()) {
H A DGradientColor.java537 if (t == null || !canApplyTheme()) {
592 public boolean canApplyTheme() { method in class:GradientColor
H A DResourcesImpl.java612 final boolean canApplyTheme = dr != null && dr.canApplyTheme();
613 if (canApplyTheme && theme != null) {
625 cacheDrawable(value, isColorDrawable, caches, theme, canApplyTheme, key, dr);
H A DResources.java794 if (d != null && d.canApplyTheme()) {
986 if (csl != null && csl.canApplyTheme()) {
/frameworks/base/graphics/java/android/graphics/drawable/
H A DColorDrawable.java287 public boolean canApplyTheme() { method in class:ColorDrawable
288 return mColorState.canApplyTheme() || super.canApplyTheme();
306 if (state.mTint != null && state.mTint.canApplyTheme()) {
341 public boolean canApplyTheme() { method in class:ColorDrawable.ColorState
343 || (mTint != null && mTint.canApplyTheme());
H A DDrawableWrapper.java150 if (mDrawable != null && mDrawable.canApplyTheme()) {
196 public boolean canApplyTheme() { method in class:DrawableWrapper
197 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme();
519 public boolean canApplyTheme() { method in class:DrawableWrapper.DrawableWrapperState
521 || (mDrawableState != null && mDrawableState.canApplyTheme())
522 || super.canApplyTheme();
H A DRippleDrawable.java523 if (state.mColor != null && state.mColor.canApplyTheme()) {
531 public boolean canApplyTheme() { method in class:RippleDrawable
532 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme();
1026 public boolean canApplyTheme() { method in class:RippleDrawable.RippleState
1028 || (mColor != null && mColor.canApplyTheme())
1029 || super.canApplyTheme();
H A DNinePatchDrawable.java494 if (state.mTint != null && state.mTint.canApplyTheme()) {
502 public boolean canApplyTheme() { method in class:NinePatchDrawable
503 return mNinePatchState != null && mNinePatchState.canApplyTheme();
634 public boolean canApplyTheme() { method in class:NinePatchDrawable.NinePatchState
636 || (mTint != null && mTint.canApplyTheme())
637 || super.canApplyTheme();
H A DAdaptiveIconDrawable.java435 if (d != null && d.canApplyTheme()) {
533 public boolean canApplyTheme() { method in class:AdaptiveIconDrawable
534 return (mLayerState != null && mLayerState.canApplyTheme()) || super.canApplyTheme();
922 public boolean canApplyTheme() { method in class:AdaptiveIconDrawable.ChildDrawable
924 || (mDrawable != null && mDrawable.canApplyTheme());
996 public boolean canApplyTheme() { method in class:AdaptiveIconDrawable.LayerState
997 if (mThemeAttrs != null || super.canApplyTheme()) {
1004 if (layer.canApplyTheme()) {
H A DVectorDrawable.java509 public boolean canApplyTheme() { method in class:VectorDrawable
510 return (mVectorState != null && mVectorState.canApplyTheme()) || super.canApplyTheme();
543 if (state.mTint != null && state.mTint.canApplyTheme()) {
547 if (mVectorState != null && mVectorState.canApplyTheme()) {
957 public boolean canApplyTheme() { method in class:VectorDrawable.VectorDrawableState
959 || (mRootGroup != null && mRootGroup.canApplyTheme())
960 || (mTint != null && mTint.canApplyTheme())
961 || super.canApplyTheme();
1366 public boolean canApplyTheme() { method in class:VectorDrawable.VGroup
1579 public boolean canApplyTheme() { method in class:VectorDrawable.VClipPath
1991 public boolean canApplyTheme() { method in class:VectorDrawable.VFullPath
2155 abstract boolean canApplyTheme(); method in class:VectorDrawable.VObject
[all...]
H A DShapeDrawable.java445 if (state.mTint != null && state.mTint.canApplyTheme()) {
590 public boolean canApplyTheme() { method in class:ShapeDrawable.ShapeState
592 || (mTint != null && mTint.canApplyTheme());
H A DGradientDrawable.java1248 if (state.mTint != null && state.mTint.canApplyTheme()) {
1252 if (state.mSolidColors != null && state.mSolidColors.canApplyTheme()) {
1256 if (state.mStrokeColors != null && state.mStrokeColors.canApplyTheme()) {
1323 public boolean canApplyTheme() { method in class:GradientDrawable
1324 return (mGradientState != null && mGradientState.canApplyTheme()) || super.canApplyTheme();
1972 public boolean canApplyTheme() { method in class:GradientDrawable.GradientState
1977 || (mTint != null && mTint.canApplyTheme())
1978 || (mStrokeColors != null && mStrokeColors.canApplyTheme())
1979 || (mSolidColors != null && mSolidColors.canApplyTheme())
[all...]
H A DStateListDrawable.java366 public boolean canApplyTheme() { method in class:StateListDrawable.StateListState
367 return mThemeAttrs != null || super.canApplyTheme();
H A DDrawableContainer.java634 public boolean canApplyTheme() { method in class:DrawableContainer
635 return mDrawableContainerState.canApplyTheme();
978 if (drawables[i] != null && drawables[i].canApplyTheme()) {
991 public boolean canApplyTheme() { method in class:DrawableContainer.DrawableContainerState
997 if (d.canApplyTheme()) {
1002 if (future != null && future.canApplyTheme()) {
H A DAnimatedVectorDrawable.java668 public boolean canApplyTheme() { method in class:AnimatedVectorDrawable
669 return (mAnimatedVectorState != null && mAnimatedVectorState.canApplyTheme())
670 || super.canApplyTheme();
678 if (vectorDrawable != null && vectorDrawable.canApplyTheme()) {
745 public boolean canApplyTheme() { method in class:AnimatedVectorDrawable.AnimatedVectorDrawableState
746 return (mVectorDrawable != null && mVectorDrawable.canApplyTheme())
747 || mPendingAnims != null || super.canApplyTheme();
H A DLayerDrawable.java229 if (d != null && d.canApplyTheme()) {
401 public boolean canApplyTheme() { method in class:LayerDrawable
402 return mLayerState.canApplyTheme() || super.canApplyTheme();
1887 public boolean canApplyTheme() { method in class:LayerDrawable.ChildDrawable
1889 || (mDrawable != null && mDrawable.canApplyTheme());
2035 public boolean canApplyTheme() { method in class:LayerDrawable.LayerState
2036 if (mThemeAttrs != null || super.canApplyTheme()) {
2044 if (layer.canApplyTheme()) {
H A DBitmapDrawable.java894 if (state.mTint != null && state.mTint.canApplyTheme()) {
916 public boolean canApplyTheme() { method in class:BitmapDrawable
917 return mBitmapState != null && mBitmapState.canApplyTheme();
995 public boolean canApplyTheme() { method in class:BitmapDrawable.BitmapState
996 return mThemeAttrs != null || mTint != null && mTint.canApplyTheme();
H A DAnimatedStateListDrawable.java636 public boolean canApplyTheme() { method in class:AnimatedStateListDrawable.AnimatedStateListState
637 return mAnimThemeAttrs != null || super.canApplyTheme();
H A DDrawable.java895 public boolean canApplyTheme() { method in class:Drawable
1446 public boolean canApplyTheme() { method in class:Drawable.ConstantState
/frameworks/support/compat/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java108 public boolean canApplyTheme(Drawable drawable) { method in class:DrawableCompat.DrawableCompatBaseImpl
259 public boolean canApplyTheme(Drawable drawable) { method in class:DrawableCompat.DrawableCompatApi21Impl
260 return drawable.canApplyTheme();
465 public static boolean canApplyTheme(@NonNull Drawable drawable) { method in class:DrawableCompat
466 return IMPL.canApplyTheme(drawable);
/frameworks/base/core/java/com/android/internal/graphics/drawable/
H A DAnimationScaleListDrawable.java226 public boolean canApplyTheme() { method in class:AnimationScaleListDrawable.AnimationScaleListState
227 return mThemeAttrs != null || super.canApplyTheme();
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
H A DAnimatedVectorDrawableCompat.java517 public boolean canApplyTheme() { method in class:AnimatedVectorDrawableCompat
519 return DrawableCompat.canApplyTheme(mDelegateDrawable);
566 public boolean canApplyTheme() { method in class:AnimatedVectorDrawableCompat.AnimatedVectorDrawableDelegateState
567 return mDelegateState.canApplyTheme();
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java489 public boolean canApplyTheme() { method in class:VectorDrawableCompat
491 DrawableCompat.canApplyTheme(mDelegateDrawable);
914 public boolean canApplyTheme() { method in class:VectorDrawableCompat.VectorDrawableDelegateState
915 return mDelegateState.canApplyTheme();
1561 public boolean canApplyTheme() { method in class:VectorDrawableCompat.VPath
1709 public boolean canApplyTheme() { method in class:VectorDrawableCompat.VFullPath

Completed in 3550 milliseconds