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

1 2

  /frameworks/base/core/java/android/content/res/
ComplexColor.java 52 public abstract boolean canApplyTheme();
GradientColor.java 537 if (t == null || !canApplyTheme()) {
592 public boolean canApplyTheme() {
ColorStateList.java 397 public boolean canApplyTheme() {
478 if (t == null || !canApplyTheme()) {
698 if (canApplyTheme()) {
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
Drawable_ConstantStateTest.java 43 assertFalse(cs.canApplyTheme());
  /frameworks/support/compat/api21/android/support/v4/graphics/drawable/
DrawableCompatLollipop.java 70 public static boolean canApplyTheme(Drawable drawable) {
71 return drawable.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 260 public boolean canApplyTheme() {
261 return mColorState.canApplyTheme() || super.canApplyTheme();
279 if (state.mTint != null && state.mTint.canApplyTheme()) {
314 public boolean canApplyTheme() {
316 || (mTint != null && mTint.canApplyTheme());
StateListDrawable.java 356 public boolean canApplyTheme() {
357 return mThemeAttrs != null || super.canApplyTheme();
DrawableWrapper.java 151 if (mDrawable != null && mDrawable.canApplyTheme()) {
197 public boolean canApplyTheme() {
198 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme();
504 public boolean canApplyTheme() {
506 || (mDrawableState != null && mDrawableState.canApplyTheme())
507 || super.canApplyTheme();
ShapeDrawable.java 424 if (state.mTint != null && state.mTint.canApplyTheme()) {
559 public boolean canApplyTheme() {
561 || (mTint != null && mTint.canApplyTheme());
AnimatedStateListDrawable.java 636 public boolean canApplyTheme() {
637 return mAnimThemeAttrs != null || super.canApplyTheme();
BitmapDrawable.java 862 if (state.mTint != null && state.mTint.canApplyTheme()) {
884 public boolean canApplyTheme() {
885 return mBitmapState != null && mBitmapState.canApplyTheme();
955 public boolean canApplyTheme() {
956 return mThemeAttrs != null || mTint != null && mTint.canApplyTheme();
    [all...]
Drawable.java 855 public boolean canApplyTheme() {
    [all...]
NinePatchDrawable.java 495 if (state.mTint != null && state.mTint.canApplyTheme()) {
503 public boolean canApplyTheme() {
504 return mNinePatchState != null && mNinePatchState.canApplyTheme();
629 public boolean canApplyTheme() {
631 || (mTint != null && mTint.canApplyTheme())
632 || super.canApplyTheme();
DrawableContainer.java 616 public boolean canApplyTheme() {
617 return mDrawableContainerState.canApplyTheme();
952 if (drawables[i] != null && drawables[i].canApplyTheme()) {
965 public boolean canApplyTheme() {
971 if (d.canApplyTheme()) {
976 if (future != null && future.canApplyTheme()) {
    [all...]
LayerDrawable.java 235 if (d != null && d.canApplyTheme()) {
407 public boolean canApplyTheme() {
408 return (mLayerState != null && mLayerState.canApplyTheme()) || super.canApplyTheme();
    [all...]
RippleDrawable.java 517 if (state.mColor != null && state.mColor.canApplyTheme()) {
525 public boolean canApplyTheme() {
526 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme();
1020 public boolean canApplyTheme() {
1022 || (mColor != null && mColor.canApplyTheme())
1023 || super.canApplyTheme();
    [all...]
AnimatedVectorDrawable.java 598 public boolean canApplyTheme() {
599 return (mAnimatedVectorState != null && mAnimatedVectorState.canApplyTheme())
600 || super.canApplyTheme();
608 if (vectorDrawable != null && vectorDrawable.canApplyTheme()) {
675 public boolean canApplyTheme() {
676 return (mVectorDrawable != null && mVectorDrawable.canApplyTheme())
677 || mPendingAnims != null || super.canApplyTheme();
    [all...]
VectorDrawable.java 533 public boolean canApplyTheme() {
534 return (mVectorState != null && mVectorState.canApplyTheme()) || super.canApplyTheme();
567 if (state.mTint != null && state.mTint.canApplyTheme()) {
571 if (mVectorState != null && mVectorState.canApplyTheme()) {
    [all...]
  /frameworks/support/compat/java/android/support/v4/graphics/drawable/
DrawableCompat.java 56 boolean canApplyTheme(Drawable drawable);
129 public boolean canApplyTheme(Drawable drawable) {
244 public boolean canApplyTheme(Drawable drawable) {
245 return DrawableCompatLollipop.canApplyTheme(drawable);
429 public static boolean canApplyTheme(@NonNull Drawable drawable) {
430 return IMPL.canApplyTheme(drawable);
  /prebuilts/sdk/current/support/graphics/drawable/libs/
android-support-animatedvectordrawable.jar 
android-support-vectordrawable.jar 
  /frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
AnimatedVectorDrawableCompat.java 436 public boolean canApplyTheme() {
438 return DrawableCompat.canApplyTheme(mDelegateDrawable);
484 public boolean canApplyTheme() {
485 return mDelegateState.canApplyTheme();
  /frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
VectorDrawableCompat.java 521 public boolean canApplyTheme() {
523 DrawableCompat.canApplyTheme(mDelegateDrawable);
    [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 571 milliseconds

1 2