HomeSort by relevance Sort by last modified time
    Searched defs:canApplyTheme (Results 1 - 25 of 35) sorted by null

1 2

  /frameworks/base/core/java/android/content/res/
ComplexColor.java 52 public abstract boolean canApplyTheme();
GradientColor.java 542 if (t == null || !canApplyTheme()) {
597 public boolean canApplyTheme() {
ColorStateList.java 397 public boolean canApplyTheme() {
478 if (t == null || !canApplyTheme()) {
707 if (canApplyTheme()) {
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
Drawable_ConstantStateTest.java 64 assertFalse(cs.canApplyTheme());
  /frameworks/base/core/java/com/android/internal/graphics/drawable/
AnimationScaleListDrawable.java 226 public boolean canApplyTheme() {
227 return mThemeAttrs != null || super.canApplyTheme();
  /frameworks/base/graphics/java/android/graphics/drawable/
ColorDrawable.java 287 public boolean canApplyTheme() {
288 return mColorState.canApplyTheme() || super.canApplyTheme();
306 if (state.mTint != null && state.mTint.canApplyTheme()) {
341 public boolean canApplyTheme() {
343 || (mTint != null && mTint.canApplyTheme());
StateListDrawable.java 366 public boolean canApplyTheme() {
367 return mThemeAttrs != null || super.canApplyTheme();
DrawableWrapper.java 150 if (mDrawable != null && mDrawable.canApplyTheme()) {
196 public boolean canApplyTheme() {
197 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme();
528 public boolean canApplyTheme() {
530 || (mDrawableState != null && mDrawableState.canApplyTheme())
531 || super.canApplyTheme();
ShapeDrawable.java 445 if (state.mTint != null && state.mTint.canApplyTheme()) {
590 public boolean canApplyTheme() {
592 || (mTint != null && mTint.canApplyTheme());
AnimatedStateListDrawable.java 636 public boolean canApplyTheme() {
637 return mAnimThemeAttrs != null || super.canApplyTheme();
BitmapDrawable.java 920 if (state.mTint != null && state.mTint.canApplyTheme()) {
    [all...]
Drawable.java     [all...]
NinePatchDrawable.java 501 if (state.mTint != null && state.mTint.canApplyTheme()) {
509 public boolean canApplyTheme() {
510 return mNinePatchState != null && mNinePatchState.canApplyTheme();
641 public boolean canApplyTheme() {
643 || (mTint != null && mTint.canApplyTheme())
644 || super.canApplyTheme();
AdaptiveIconDrawable.java 439 if (d != null && d.canApplyTheme()) {
537 public boolean canApplyTheme() {
538 return (mLayerState != null && mLayerState.canApplyTheme()) || super.canApplyTheme();
920 public boolean canApplyTheme() {
922 || (mDrawable != null && mDrawable.canApplyTheme());
994 public boolean canApplyTheme() {
995 if (mThemeAttrs != null || super.canApplyTheme())
    [all...]
DrawableContainer.java 634 public boolean canApplyTheme() {
635 return mDrawableContainerState.canApplyTheme();
978 if (drawables[i] != null && drawables[i].canApplyTheme()) {
991 public boolean canApplyTheme() {
997 if (d.canApplyTheme()) {
    [all...]
LayerDrawable.java 229 if (d != null && d.canApplyTheme()) {
401 public boolean canApplyTheme() {
402 return mLayerState.canApplyTheme() || super.canApplyTheme();
    [all...]
RippleDrawable.java 521 if (state.mColor != null && state.mColor.canApplyTheme()) {
529 public boolean canApplyTheme() {
530 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme();
1008 public boolean canApplyTheme() {
1010 || (mColor != null && mColor.canApplyTheme())
1011 || super.canApplyTheme();
    [all...]
AnimatedVectorDrawable.java 672 public boolean canApplyTheme() {
673 return (mAnimatedVectorState != null && mAnimatedVectorState.canApplyTheme())
674 || super.canApplyTheme();
682 if (vectorDrawable != null && vectorDrawable.canApplyTheme()) {
749 public boolean canApplyTheme() {
750 return (mVectorDrawable != null && mVectorDrawable.canApplyTheme())
751 || mPendingAnims != null || super.canApplyTheme();
    [all...]
VectorDrawable.java 588 public boolean canApplyTheme() {
589 return (mVectorState != null && mVectorState.canApplyTheme()) || super.canApplyTheme();
622 if (state.mTint != null && state.mTint.canApplyTheme()) {
626 if (mVectorState != null && mVectorState.canApplyTheme()) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
ShadowKeyDrawable.java 129 public boolean canApplyTheme() {
130 return mState.canApplyTheme();
203 public boolean canApplyTheme() {
  /frameworks/support/compat/src/main/java/androidx/core/graphics/drawable/
DrawableCompat.java 196 public static boolean canApplyTheme(@NonNull Drawable drawable) {
198 return drawable.canApplyTheme();
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
ShadowDrawable.java 106 public boolean canApplyTheme() {
107 return mState.canApplyTheme();
210 public boolean canApplyTheme() {
  /frameworks/support/graphics/drawable/animated/src/main/java/androidx/vectordrawable/graphics/drawable/
AnimatedVectorDrawableCompat.java 521 public boolean canApplyTheme() {
523 return DrawableCompat.canApplyTheme(mDelegateDrawable);
570 public boolean canApplyTheme() {
571 return mDelegateState.canApplyTheme();
    [all...]
  /frameworks/support/graphics/drawable/static/src/main/java/androidx/vectordrawable/graphics/drawable/
VectorDrawableCompat.java 495 public boolean canApplyTheme() {
497 DrawableCompat.canApplyTheme(mDelegateDrawable);
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-stubs.jar 

Completed in 263 milliseconds

1 2