/frameworks/base/graphics/java/android/graphics/drawable/ |
D | ColorStateListDrawable.java | 91 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()
|
D | ColorDrawable.java | 316 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()
|
D | DrawableWrapper.java | 163 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()
|
D | AdaptiveIconDrawable.java | 439 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()
|
D | VectorDrawable.java | 605 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 …]
|
D | RippleDrawable.java | 524 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()
|
D | NinePatchDrawable.java | 501 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()
|
D | DrawableContainer.java | 635 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()
|
D | BitmapDrawable.java | 925 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()
|
D | GradientDrawable.java | 1416 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()
|
D | LayerDrawable.java | 234 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()) {
|
D | ShapeDrawable.java | 447 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()
|
D | StateListDrawable.java | 369 public boolean canApplyTheme() { in canApplyTheme() method in StateListDrawable.StateListState 370 return mThemeAttrs != null || super.canApplyTheme(); in canApplyTheme()
|
D | AnimatedVectorDrawable.java | 677 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()
|
D | AnimatedStateListDrawable.java | 641 public boolean canApplyTheme() { in canApplyTheme() method in AnimatedStateListDrawable.AnimatedStateListState 642 return mAnimThemeAttrs != null || super.canApplyTheme(); in canApplyTheme()
|
D | Drawable.java | 964 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/ |
D | CastDrawable.java | 59 public boolean canApplyTheme() { in canApplyTheme() method in CastDrawable 60 return mFillDrawable.canApplyTheme() || super.canApplyTheme(); in canApplyTheme()
|
/frameworks/base/core/java/android/content/res/ |
D | ComplexColor.java | 52 public abstract boolean canApplyTheme(); in canApplyTheme() method in ComplexColor
|
D | ColorStateList.java | 404 public boolean canApplyTheme() { in canApplyTheme() method in ColorStateList 486 if (t == null || !canApplyTheme()) { in obtainForTheme() 719 if (canApplyTheme()) { in writeToParcel()
|
D | GradientColor.java | 542 if (t == null || !canApplyTheme()) { in obtainForTheme() 597 public boolean canApplyTheme() { in canApplyTheme() method in GradientColor
|
D | ResourcesImpl.java | 671 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()
|
D | Resources.java | 821 if (d != null && d.canApplyTheme()) { in getDrawable() 1019 if (csl != null && csl.canApplyTheme()) { in getColorStateList()
|
/frameworks/base/core/java/com/android/internal/graphics/drawable/ |
D | AnimationScaleListDrawable.java | 226 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/ |
D | KeyButtonDrawable.java | 280 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/ |
D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |