Home
last modified time | relevance | path

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

/frameworks/base/graphics/java/android/graphics/drawable/
DClipDrawable.java165 if (state.mDrawable != null && state.mDrawable.canApplyTheme()) { in applyTheme()
171 public boolean canApplyTheme() { in canApplyTheme() method in ClipDrawable
172 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme(); in canApplyTheme()
381 public boolean canApplyTheme() { in canApplyTheme() method in ClipDrawable.ClipState
382 return mThemeAttrs != null || (mDrawable != null && mDrawable.canApplyTheme()) in canApplyTheme()
383 || super.canApplyTheme(); in canApplyTheme()
DScaleDrawable.java130 if (state.mDrawable != null && state.mDrawable.canApplyTheme()) { in applyTheme()
189 public boolean canApplyTheme() { in canApplyTheme() method in ScaleDrawable
190 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme(); in canApplyTheme()
389 public boolean canApplyTheme() { in canApplyTheme() method in ScaleDrawable.ScaleState
390 return mThemeAttrs != null || (mDrawable != null && mDrawable.canApplyTheme()) in canApplyTheme()
391 || super.canApplyTheme(); in canApplyTheme()
DAnimatedVectorDrawable.java319 public boolean canApplyTheme() { in canApplyTheme() method in AnimatedVectorDrawable
320 return (mAnimatedVectorState != null && mAnimatedVectorState.canApplyTheme()) in canApplyTheme()
321 || super.canApplyTheme(); in canApplyTheme()
329 if (vectorDrawable != null && vectorDrawable.canApplyTheme()) { in applyTheme()
377 public boolean canApplyTheme() { in canApplyTheme() method in AnimatedVectorDrawable.AnimatedVectorDrawableState
378 return (mVectorDrawable != null && mVectorDrawable.canApplyTheme()) in canApplyTheme()
379 || super.canApplyTheme(); in canApplyTheme()
DAnimatedRotateDrawable.java192 public boolean canApplyTheme() { in canApplyTheme() method in AnimatedRotateDrawable
193 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme(); in canApplyTheme()
300 if (state.mDrawable != null && state.mDrawable.canApplyTheme()) { in applyTheme()
451 public boolean canApplyTheme() { in canApplyTheme() method in AnimatedRotateDrawable.AnimatedRotateState
452 return mThemeAttrs != null || (mDrawable != null && mDrawable.canApplyTheme()) in canApplyTheme()
453 || super.canApplyTheme(); in canApplyTheme()
DInsetDrawable.java201 if (state.mDrawable != null && state.mDrawable.canApplyTheme()) { in applyTheme()
207 public boolean canApplyTheme() { in canApplyTheme() method in InsetDrawable
208 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme(); in canApplyTheme()
451 public boolean canApplyTheme() { in canApplyTheme() method in InsetDrawable.InsetState
452 return mThemeAttrs != null || (mDrawable != null && mDrawable.canApplyTheme()) in canApplyTheme()
453 || super.canApplyTheme(); in canApplyTheme()
DRotateDrawable.java316 public boolean canApplyTheme() { in canApplyTheme() method in RotateDrawable
317 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme(); in canApplyTheme()
442 if (state.mDrawable != null && state.mDrawable.canApplyTheme()) { in applyTheme()
576 public boolean canApplyTheme() { in canApplyTheme() method in RotateDrawable.RotateState
577 return mThemeAttrs != null || (mDrawable != null && mDrawable.canApplyTheme()) in canApplyTheme()
578 || super.canApplyTheme(); in canApplyTheme()
DColorDrawable.java255 public boolean canApplyTheme() { in canApplyTheme() method in ColorDrawable
256 return mColorState.canApplyTheme() || super.canApplyTheme(); in canApplyTheme()
301 public boolean canApplyTheme() { in canApplyTheme() method in ColorDrawable.ColorState
DVectorDrawable.java363 public boolean canApplyTheme() { in canApplyTheme() method in VectorDrawable
364 return (mVectorState != null && mVectorState.canApplyTheme()) || super.canApplyTheme(); in canApplyTheme()
387 if (path != null && path.canApplyTheme()) { in applyTheme()
752 public boolean canApplyTheme() { in canApplyTheme() method in VectorDrawable.VectorDrawableState
753 return mThemeAttrs != null || (mVPathRenderer != null && mVPathRenderer.canApplyTheme()) in canApplyTheme()
754 || super.canApplyTheme(); in canApplyTheme()
855 public boolean canApplyTheme() { in canApplyTheme() method in VectorDrawable.VPathRenderer
869 if (childGroup.canApplyTheme() in recursiveCanApplyTheme()
875 if (childPath.canApplyTheme()) { in recursiveCanApplyTheme()
896 if (childGroup.canApplyTheme()) { in recursiveApplyTheme()
[all …]
DDrawableContainer.java575 public boolean canApplyTheme() { in canApplyTheme() method in DrawableContainer
576 return mDrawableContainerState.canApplyTheme(); in canApplyTheme()
848 if (drawables[i] != null && drawables[i].canApplyTheme()) { in applyTheme()
856 public boolean canApplyTheme() { in canApplyTheme() method in DrawableContainer.DrawableContainerState
862 if (d.canApplyTheme()) { in canApplyTheme()
867 if (future != null && future.canApplyTheme()) { in canApplyTheme()
1140 public boolean canApplyTheme() { in canApplyTheme() method in DrawableContainer.DrawableContainerState.ConstantStateFuture
1141 return mConstantState.canApplyTheme(); in canApplyTheme()
DLayerDrawable.java269 if (d.canApplyTheme()) { in applyTheme()
279 public boolean canApplyTheme() { in canApplyTheme() method in LayerDrawable
280 return (mLayerState != null && mLayerState.canApplyTheme()) || super.canApplyTheme(); in canApplyTheme()
1024 public boolean canApplyTheme() { in canApplyTheme() method in LayerDrawable.LayerState
1025 if (mThemeAttrs != null || super.canApplyTheme()) { in canApplyTheme()
1033 if (layer.mThemeAttrs != null || layer.mDrawable.canApplyTheme()) { in canApplyTheme()
DRippleDrawable.java471 public boolean canApplyTheme() { in canApplyTheme() method in RippleDrawable
472 return (mState != null && mState.canApplyTheme()) || super.canApplyTheme(); in canApplyTheme()
933 public boolean canApplyTheme() { in canApplyTheme() method in RippleDrawable.RippleState
934 return mTouchThemeAttrs != null || super.canApplyTheme(); in canApplyTheme()
DStateListDrawable.java376 public boolean canApplyTheme() { in canApplyTheme() method in StateListDrawable.StateListState
377 return mThemeAttrs != null || super.canApplyTheme(); in canApplyTheme()
DDrawable.java717 public boolean canApplyTheme() { in canApplyTheme() method in Drawable
1263 public boolean canApplyTheme() { in canApplyTheme() method in Drawable.ConstantState
DGradientDrawable.java1095 public boolean canApplyTheme() {
1096 return (mGradientState != null && mGradientState.canApplyTheme()) || super.canApplyTheme();
1636 public boolean canApplyTheme() {
1639 || mAttrPadding != null || super.canApplyTheme();
DAnimatedStateListDrawable.java635 public boolean canApplyTheme() { in canApplyTheme() method in AnimatedStateListDrawable.AnimatedStateListState
636 return mAnimThemeAttrs != null || super.canApplyTheme(); in canApplyTheme()
DNinePatchDrawable.java498 public boolean canApplyTheme() { in canApplyTheme() method in NinePatchDrawable
647 public boolean canApplyTheme() { in canApplyTheme() method in NinePatchDrawable.NinePatchState
DBitmapDrawable.java841 public boolean canApplyTheme() { in canApplyTheme() method in BitmapDrawable
912 public boolean canApplyTheme() { in canApplyTheme() method in BitmapDrawable.BitmapState
DShapeDrawable.java552 public boolean canApplyTheme() { in canApplyTheme() method in ShapeDrawable.ShapeState
/frameworks/base/core/java/android/content/res/
DResources.java753 if (d != null && d.canApplyTheme()) { in getDrawable()
/frameworks/base/docs/html/sdk/api_diff/21/
DmissingSinces.txt281 NO DOC BLOCK: android.graphics.drawable.Drawable Method canApplyTheme()
282 NO DOC BLOCK: android.graphics.drawable.Drawable.ConstantState Method canApplyTheme()
/frameworks/base/api/
Dsystem-current.txt11978 method public boolean canApplyTheme();
12051 method public boolean canApplyTheme();
Dcurrent.txt11672 method public boolean canApplyTheme();
11745 method public boolean canApplyTheme();