Home
last modified time | relevance | path

Searched refs:canApplyTheme (Results 1 – 25 of 25) sorted by relevance

/frameworks/base/graphics/java/android/graphics/drawable/
DColorStateListDrawable.java91 public boolean canApplyTheme() { in canApplyTheme() method in ColorStateListDrawable
92 return super.canApplyTheme() || mState.canApplyTheme(); in canApplyTheme()
283 public boolean canApplyTheme() { in canApplyTheme() method in ColorStateListDrawable.ColorStateListDrawableState
284 return (mColor != null && mColor.canApplyTheme()) in canApplyTheme()
285 || (mTint != null && mTint.canApplyTheme()); in canApplyTheme()
DColorDrawable.java316 public boolean canApplyTheme() { in canApplyTheme() method in ColorDrawable
317 return mColorState.canApplyTheme() || super.canApplyTheme(); in canApplyTheme()
335 if (state.mTint != null && state.mTint.canApplyTheme()) { in applyTheme()
371 public boolean canApplyTheme() { in canApplyTheme() method in ColorDrawable.ColorState
373 || (mTint != null && mTint.canApplyTheme()); in canApplyTheme()
DDrawableWrapper.java163 if (mDrawable != null && mDrawable.canApplyTheme()) { in applyTheme()
209 public boolean canApplyTheme() { in canApplyTheme() method in DrawableWrapper
210 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme(); in canApplyTheme()
540 public boolean canApplyTheme() { in canApplyTheme() method in DrawableWrapper.DrawableWrapperState
542 || (mDrawableState != null && mDrawableState.canApplyTheme()) in canApplyTheme()
543 || super.canApplyTheme(); in canApplyTheme()
DAdaptiveIconDrawable.java439 if (d != null && d.canApplyTheme()) { in applyTheme()
537 public boolean canApplyTheme() { in canApplyTheme() method in AdaptiveIconDrawable
538 return (mLayerState != null && mLayerState.canApplyTheme()) || super.canApplyTheme(); in canApplyTheme()
917 public boolean canApplyTheme() { in canApplyTheme() method in AdaptiveIconDrawable.ChildDrawable
919 || (mDrawable != null && mDrawable.canApplyTheme()); in canApplyTheme()
991 public boolean canApplyTheme() { in canApplyTheme() method in AdaptiveIconDrawable.LayerState
992 if (mThemeAttrs != null || super.canApplyTheme()) { in canApplyTheme()
999 if (layer.canApplyTheme()) { in canApplyTheme()
DVectorDrawable.java605 public boolean canApplyTheme() { in canApplyTheme() method in VectorDrawable
606 return (mVectorState != null && mVectorState.canApplyTheme()) || super.canApplyTheme(); in canApplyTheme()
639 if (state.mTint != null && state.mTint.canApplyTheme()) { in applyTheme()
643 if (mVectorState != null && mVectorState.canApplyTheme()) { in applyTheme()
1067 public boolean canApplyTheme() { in canApplyTheme() method in VectorDrawable.VectorDrawableState
1069 || (mRootGroup != null && mRootGroup.canApplyTheme()) in canApplyTheme()
1070 || (mTint != null && mTint.canApplyTheme()) in canApplyTheme()
1071 || super.canApplyTheme(); in canApplyTheme()
1476 public boolean canApplyTheme() { in canApplyTheme() method in VectorDrawable.VGroup
1484 if (child.canApplyTheme()) { in canApplyTheme()
[all …]
DRippleDrawable.java524 if (state.mColor != null && state.mColor.canApplyTheme()) { in applyTheme()
532 public boolean canApplyTheme() { in canApplyTheme() method in RippleDrawable
533 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme(); in canApplyTheme()
1017 public boolean canApplyTheme() { in canApplyTheme() method in RippleDrawable.RippleState
1019 || (mColor != null && mColor.canApplyTheme()) in canApplyTheme()
1020 || super.canApplyTheme(); in canApplyTheme()
DNinePatchDrawable.java501 if (state.mTint != null && state.mTint.canApplyTheme()) { in applyTheme()
509 public boolean canApplyTheme() { in canApplyTheme() method in NinePatchDrawable
510 return mNinePatchState != null && mNinePatchState.canApplyTheme(); in canApplyTheme()
643 public boolean canApplyTheme() { in canApplyTheme() method in NinePatchDrawable.NinePatchState
645 || (mTint != null && mTint.canApplyTheme()) in canApplyTheme()
646 || super.canApplyTheme(); in canApplyTheme()
DDrawableContainer.java635 public boolean canApplyTheme() { in canApplyTheme() method in DrawableContainer
636 return mDrawableContainerState.canApplyTheme(); in canApplyTheme()
983 if (drawables[i] != null && drawables[i].canApplyTheme()) { in applyTheme()
996 public boolean canApplyTheme() { in canApplyTheme() method in DrawableContainer.DrawableContainerState
1002 if (d.canApplyTheme()) { in canApplyTheme()
1007 if (future != null && future.canApplyTheme()) { in canApplyTheme()
DBitmapDrawable.java925 if (state.mTint != null && state.mTint.canApplyTheme()) { in applyTheme()
947 public boolean canApplyTheme() { in canApplyTheme() method in BitmapDrawable
948 return mBitmapState != null && mBitmapState.canApplyTheme(); in canApplyTheme()
1027 public boolean canApplyTheme() { in canApplyTheme() method in BitmapDrawable.BitmapState
1028 return mThemeAttrs != null || mTint != null && mTint.canApplyTheme(); in canApplyTheme()
DGradientDrawable.java1416 if (state.mTint != null && state.mTint.canApplyTheme()) {
1420 if (state.mSolidColors != null && state.mSolidColors.canApplyTheme()) {
1424 if (state.mStrokeColors != null && state.mStrokeColors.canApplyTheme()) {
1491 public boolean canApplyTheme() {
1492 return (mGradientState != null && mGradientState.canApplyTheme()) || super.canApplyTheme();
2134 public boolean canApplyTheme() { in canApplyTheme() method in GradientDrawable.GradientState
2139 || (mTint != null && mTint.canApplyTheme()) in canApplyTheme()
2140 || (mStrokeColors != null && mStrokeColors.canApplyTheme()) in canApplyTheme()
2141 || (mSolidColors != null && mSolidColors.canApplyTheme()) in canApplyTheme()
2142 || super.canApplyTheme(); in canApplyTheme()
DLayerDrawable.java234 if (d != null && d.canApplyTheme()) { in applyTheme()
406 public boolean canApplyTheme() { in canApplyTheme() method in LayerDrawable
407 return mLayerState.canApplyTheme() || super.canApplyTheme(); in canApplyTheme()
1896 public boolean canApplyTheme() {
1898 || (mDrawable != null && mDrawable.canApplyTheme());
2045 public boolean canApplyTheme() {
2046 if (mThemeAttrs != null || super.canApplyTheme()) {
2054 if (layer.canApplyTheme()) {
DShapeDrawable.java447 if (state.mTint != null && state.mTint.canApplyTheme()) { in applyTheme()
592 public boolean canApplyTheme() { in canApplyTheme() method in ShapeDrawable.ShapeState
594 || (mTint != null && mTint.canApplyTheme()); in canApplyTheme()
DStateListDrawable.java369 public boolean canApplyTheme() { in canApplyTheme() method in StateListDrawable.StateListState
370 return mThemeAttrs != null || super.canApplyTheme(); in canApplyTheme()
DAnimatedVectorDrawable.java677 public boolean canApplyTheme() { in canApplyTheme() method in AnimatedVectorDrawable
678 return (mAnimatedVectorState != null && mAnimatedVectorState.canApplyTheme()) in canApplyTheme()
679 || super.canApplyTheme(); in canApplyTheme()
687 if (vectorDrawable != null && vectorDrawable.canApplyTheme()) { in applyTheme()
754 public boolean canApplyTheme() { in canApplyTheme() method in AnimatedVectorDrawable.AnimatedVectorDrawableState
755 return (mVectorDrawable != null && mVectorDrawable.canApplyTheme()) in canApplyTheme()
756 || mPendingAnims != null || super.canApplyTheme(); in canApplyTheme()
DAnimatedStateListDrawable.java641 public boolean canApplyTheme() { in canApplyTheme() method in AnimatedStateListDrawable.AnimatedStateListState
642 return mAnimThemeAttrs != null || super.canApplyTheme(); in canApplyTheme()
DDrawable.java964 public boolean canApplyTheme() { in canApplyTheme() method in Drawable
1553 public boolean canApplyTheme() { in canApplyTheme() method in ConstantState
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DCastDrawable.java59 public boolean canApplyTheme() { in canApplyTheme() method in CastDrawable
60 return mFillDrawable.canApplyTheme() || super.canApplyTheme(); in canApplyTheme()
/frameworks/base/core/java/android/content/res/
DComplexColor.java52 public abstract boolean canApplyTheme(); in canApplyTheme() method in ComplexColor
DColorStateList.java404 public boolean canApplyTheme() { in canApplyTheme() method in ColorStateList
486 if (t == null || !canApplyTheme()) { in obtainForTheme()
719 if (canApplyTheme()) { in writeToParcel()
DGradientColor.java542 if (t == null || !canApplyTheme()) { in obtainForTheme()
597 public boolean canApplyTheme() { in canApplyTheme() method in GradientColor
DResourcesImpl.java671 final boolean canApplyTheme = dr != null && dr.canApplyTheme(); in loadDrawable()
672 if (canApplyTheme && theme != null) { in loadDrawable()
684 cacheDrawable(value, isColorDrawable, caches, theme, canApplyTheme, key, dr); in loadDrawable()
DResources.java821 if (d != null && d.canApplyTheme()) { in getDrawable()
1019 if (csl != null && csl.canApplyTheme()) { in getColorStateList()
/frameworks/base/core/java/com/android/internal/graphics/drawable/
DAnimationScaleListDrawable.java226 public boolean canApplyTheme() { in canApplyTheme() method in AnimationScaleListDrawable.AnimationScaleListState
227 return mThemeAttrs != null || super.canApplyTheme(); in canApplyTheme()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyButtonDrawable.java280 public boolean canApplyTheme() { in canApplyTheme() method in KeyButtonDrawable
281 return mState.canApplyTheme(); in canApplyTheme()
419 public boolean canApplyTheme() { in canApplyTheme() method in KeyButtonDrawable.ShadowDrawableState
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...