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()) {
698 if (canApplyTheme()) {
H A DGradientColor.java537 if (t == null || !canApplyTheme()) {
592 public boolean canApplyTheme() { method in class:GradientColor
H A DResourcesImpl.java577 final boolean canApplyTheme = dr != null && dr.canApplyTheme();
578 if (canApplyTheme && theme != null) {
589 cacheDrawable(value, isColorDrawable, caches, theme, canApplyTheme, key, dr);
H A DResources.java743 if (d != null && d.canApplyTheme()) {
959 if (csl != null && csl.canApplyTheme()) {
/frameworks/base/graphics/java/android/graphics/drawable/
H A DColorDrawable.java260 public boolean canApplyTheme() { method in class:ColorDrawable
261 return mColorState.canApplyTheme() || super.canApplyTheme();
279 if (state.mTint != null && state.mTint.canApplyTheme()) {
314 public boolean canApplyTheme() { method in class:ColorDrawable.ColorState
316 || (mTint != null && mTint.canApplyTheme());
H A DDrawableWrapper.java151 if (mDrawable != null && mDrawable.canApplyTheme()) {
197 public boolean canApplyTheme() { method in class:DrawableWrapper
198 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme();
504 public boolean canApplyTheme() { method in class:DrawableWrapper.DrawableWrapperState
506 || (mDrawableState != null && mDrawableState.canApplyTheme())
507 || super.canApplyTheme();
H A DRippleDrawable.java517 if (state.mColor != null && state.mColor.canApplyTheme()) {
525 public boolean canApplyTheme() { method in class:RippleDrawable
526 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme();
1020 public boolean canApplyTheme() { method in class:RippleDrawable.RippleState
1022 || (mColor != null && mColor.canApplyTheme())
1023 || super.canApplyTheme();
H A DNinePatchDrawable.java495 if (state.mTint != null && state.mTint.canApplyTheme()) {
503 public boolean canApplyTheme() { method in class:NinePatchDrawable
504 return mNinePatchState != null && mNinePatchState.canApplyTheme();
629 public boolean canApplyTheme() { method in class:NinePatchDrawable.NinePatchState
631 || (mTint != null && mTint.canApplyTheme())
632 || super.canApplyTheme();
H A DVectorDrawable.java533 public boolean canApplyTheme() { method in class:VectorDrawable
534 return (mVectorState != null && mVectorState.canApplyTheme()) || super.canApplyTheme();
567 if (state.mTint != null && state.mTint.canApplyTheme()) {
571 if (mVectorState != null && mVectorState.canApplyTheme()) {
981 public boolean canApplyTheme() { method in class:VectorDrawable.VectorDrawableState
983 || (mRootGroup != null && mRootGroup.canApplyTheme())
984 || (mTint != null && mTint.canApplyTheme())
985 || super.canApplyTheme();
1369 public boolean canApplyTheme() { method in class:VectorDrawable.VGroup
1582 public boolean canApplyTheme() { method in class:VectorDrawable.VClipPath
1981 public boolean canApplyTheme() { method in class:VectorDrawable.VFullPath
2145 abstract boolean canApplyTheme(); method in class:VectorDrawable.VObject
[all...]
H A DShapeDrawable.java424 if (state.mTint != null && state.mTint.canApplyTheme()) {
559 public boolean canApplyTheme() { method in class:ShapeDrawable.ShapeState
561 || (mTint != null && mTint.canApplyTheme());
H A DGradientDrawable.java1238 if (state.mTint != null && state.mTint.canApplyTheme()) {
1242 if (state.mSolidColors != null && state.mSolidColors.canApplyTheme()) {
1246 if (state.mStrokeColors != null && state.mStrokeColors.canApplyTheme()) {
1313 public boolean canApplyTheme() { method in class:GradientDrawable
1314 return (mGradientState != null && mGradientState.canApplyTheme()) || super.canApplyTheme();
1962 public boolean canApplyTheme() { method in class:GradientDrawable.GradientState
1967 || (mTint != null && mTint.canApplyTheme())
1968 || (mStrokeColors != null && mStrokeColors.canApplyTheme())
1969 || (mSolidColors != null && mSolidColors.canApplyTheme())
[all...]
H A DStateListDrawable.java356 public boolean canApplyTheme() { method in class:StateListDrawable.StateListState
357 return mThemeAttrs != null || super.canApplyTheme();
H A DDrawableContainer.java616 public boolean canApplyTheme() { method in class:DrawableContainer
617 return mDrawableContainerState.canApplyTheme();
952 if (drawables[i] != null && drawables[i].canApplyTheme()) {
965 public boolean canApplyTheme() { method in class:DrawableContainer.DrawableContainerState
971 if (d.canApplyTheme()) {
976 if (future != null && future.canApplyTheme()) {
H A DAnimatedVectorDrawable.java598 public boolean canApplyTheme() { method in class:AnimatedVectorDrawable
599 return (mAnimatedVectorState != null && mAnimatedVectorState.canApplyTheme())
600 || super.canApplyTheme();
608 if (vectorDrawable != null && vectorDrawable.canApplyTheme()) {
675 public boolean canApplyTheme() { method in class:AnimatedVectorDrawable.AnimatedVectorDrawableState
676 return (mVectorDrawable != null && mVectorDrawable.canApplyTheme())
677 || mPendingAnims != null || super.canApplyTheme();
H A DLayerDrawable.java235 if (d != null && d.canApplyTheme()) {
407 public boolean canApplyTheme() { method in class:LayerDrawable
408 return (mLayerState != null && mLayerState.canApplyTheme()) || super.canApplyTheme();
1873 public boolean canApplyTheme() { method in class:LayerDrawable.ChildDrawable
1875 || (mDrawable != null && mDrawable.canApplyTheme());
2021 public boolean canApplyTheme() { method in class:LayerDrawable.LayerState
2022 if (mThemeAttrs != null || super.canApplyTheme()) {
2030 if (layer.canApplyTheme()) {
H A DBitmapDrawable.java862 if (state.mTint != null && state.mTint.canApplyTheme()) {
884 public boolean canApplyTheme() { method in class:BitmapDrawable
885 return mBitmapState != null && mBitmapState.canApplyTheme();
955 public boolean canApplyTheme() { method in class:BitmapDrawable.BitmapState
956 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.java855 public boolean canApplyTheme() { method in class:Drawable
1379 public boolean canApplyTheme() { method in class:Drawable.ConstantState
/frameworks/support/compat/api21/android/support/v4/graphics/drawable/
H A DDrawableCompatLollipop.java70 public static boolean canApplyTheme(Drawable drawable) { method in class:DrawableCompatLollipop
71 return drawable.canApplyTheme();
/frameworks/support/compat/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java56 boolean canApplyTheme(Drawable drawable); method in interface:DrawableCompat.DrawableImpl
129 public boolean canApplyTheme(Drawable drawable) { method in class:DrawableCompat.BaseDrawableImpl
244 public boolean canApplyTheme(Drawable drawable) { method in class:DrawableCompat.LollipopDrawableImpl
245 return DrawableCompatLollipop.canApplyTheme(drawable);
429 public static boolean canApplyTheme(@NonNull Drawable drawable) { method in class:DrawableCompat
430 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.java436 public boolean canApplyTheme() { method in class:AnimatedVectorDrawableCompat
438 return DrawableCompat.canApplyTheme(mDelegateDrawable);
484 public boolean canApplyTheme() { method in class:AnimatedVectorDrawableCompat.AnimatedVectorDrawableDelegateState
485 return mDelegateState.canApplyTheme();
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java521 public boolean canApplyTheme() { method in class:VectorDrawableCompat
523 DrawableCompat.canApplyTheme(mDelegateDrawable);
941 public boolean canApplyTheme() { method in class:VectorDrawableCompat.VectorDrawableDelegateState
942 return mDelegateState.canApplyTheme();
1586 public boolean canApplyTheme() { method in class:VectorDrawableCompat.VPath
1734 public boolean canApplyTheme() { method in class:VectorDrawableCompat.VFullPath

Completed in 604 milliseconds