HomeSort by relevance Sort by last modified time
    Searched refs:canApplyTheme (Results 1 - 22 of 22) sorted by null

  /frameworks/support/v4/api21/android/support/v4/graphics/drawable/
DrawableWrapperLollipop.java 51 public boolean canApplyTheme() {
52 return mDrawable.canApplyTheme();
  /frameworks/base/graphics/java/android/graphics/drawable/
ColorDrawable.java 259 public boolean canApplyTheme() {
260 return mColorState.canApplyTheme() || super.canApplyTheme();
278 if (state.mTint != null && state.mTint.canApplyTheme()) {
313 public boolean canApplyTheme() {
315 || (mTint != null && mTint.canApplyTheme());
DrawableWrapper.java 139 if (mDrawable != null && mDrawable.canApplyTheme()) {
145 public boolean canApplyTheme() {
146 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme();
407 public boolean canApplyTheme() {
409 || (mDrawableState != null && mDrawableState.canApplyTheme())
410 || super.canApplyTheme();
AnimatedVectorDrawable.java 362 public boolean canApplyTheme() {
363 return (mAnimatedVectorState != null && mAnimatedVectorState.canApplyTheme())
364 || super.canApplyTheme();
372 if (vectorDrawable != null && vectorDrawable.canApplyTheme()) {
436 public boolean canApplyTheme() {
437 return (mVectorDrawable != null && mVectorDrawable.canApplyTheme())
438 || mPendingAnims != null || super.canApplyTheme();
RippleDrawable.java 519 if (state.mColor != null && state.mColor.canApplyTheme()) {
527 public boolean canApplyTheme() {
528 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme();
993 public boolean canApplyTheme() {
995 || (mColor != null && mColor.canApplyTheme())
996 || super.canApplyTheme();
VectorDrawable.java 462 public boolean canApplyTheme() {
463 return (mVectorState != null && mVectorState.canApplyTheme()) || super.canApplyTheme();
490 if (state.mTint != null && state.mTint.canApplyTheme()) {
495 if (path != null && path.canApplyTheme()) {
    [all...]
DrawableContainer.java 581 public boolean canApplyTheme() {
582 return mDrawableContainerState.canApplyTheme();
864 if (drawables[i] != null && drawables[i].canApplyTheme()) {
875 public boolean canApplyTheme() {
881 if (d.canApplyTheme()) {
886 if (future != null && future.canApplyTheme()) {
    [all...]
NinePatchDrawable.java 506 if (state.mTint != null && state.mTint.canApplyTheme()) {
514 public boolean canApplyTheme() {
515 return mNinePatchState != null && mNinePatchState.canApplyTheme();
663 public boolean canApplyTheme() {
665 || (mTint != null && mTint.canApplyTheme());
ShapeDrawable.java 423 if (state.mTint != null && state.mTint.canApplyTheme()) {
558 public boolean canApplyTheme() {
560 || (mTint != null && mTint.canApplyTheme());
GradientDrawable.java     [all...]
StateListDrawable.java 355 public boolean canApplyTheme() {
356 return mThemeAttrs != null || super.canApplyTheme();
LayerDrawable.java 329 if (d != null && d.canApplyTheme()) {
341 public boolean canApplyTheme() {
342 return (mLayerState != null && mLayerState.canApplyTheme()) || super.canApplyTheme();
    [all...]
BitmapDrawable.java 840 if (state.mTint != null && state.mTint.canApplyTheme()) {
862 public boolean canApplyTheme() {
863 return mBitmapState != null && mBitmapState.canApplyTheme();
933 public boolean canApplyTheme() {
934 return mThemeAttrs != null || mTint != null && mTint.canApplyTheme();
    [all...]
AnimatedStateListDrawable.java 635 public boolean canApplyTheme() {
636 return mAnimThemeAttrs != null || super.canApplyTheme();
Drawable.java 798 public boolean canApplyTheme() {
    [all...]
  /frameworks/base/core/java/android/content/res/
ColorStateList.java 343 public boolean canApplyTheme() {
423 if (t == null || !canApplyTheme()) {
642 if (canApplyTheme()) {
Resources.java 772 if (d != null && d.canApplyTheme()) {
    [all...]
  /frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
VectorDrawableCompat.java 371 public boolean canApplyTheme() {
    [all...]
  /frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
AnimatedVectorDrawableCompat.java 353 public boolean canApplyTheme() {
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 

Completed in 819 milliseconds