OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:canApplyTheme
(Results
1 - 25
of
30
) sorted by null
1
2
/frameworks/base/core/java/android/content/res/
ComplexColor.java
52
public abstract boolean
canApplyTheme
();
ColorStateList.java
397
public boolean
canApplyTheme
() {
478
if (t == null || !
canApplyTheme
()) {
698
if (
canApplyTheme
()) {
GradientColor.java
537
if (t == null || !
canApplyTheme
()) {
592
public boolean
canApplyTheme
() {
ResourcesImpl.java
577
final boolean
canApplyTheme
= dr != null && dr.
canApplyTheme
();
578
if (
canApplyTheme
&& theme != null) {
589
cacheDrawable(value, isColorDrawable, caches, theme,
canApplyTheme
, key, dr);
[
all
...]
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
Drawable_ConstantStateTest.java
43
assertFalse(cs.
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
());
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
();
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
...]
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
();
VectorDrawable.java
475
public boolean
canApplyTheme
() {
476
return (mVectorState != null && mVectorState.
canApplyTheme
()) || super.
canApplyTheme
();
509
if (state.mTint != null && state.mTint.
canApplyTheme
()) {
513
if (mVectorState != null && mVectorState.
canApplyTheme
()) {
[
all
...]
ShapeDrawable.java
424
if (state.mTint != null && state.mTint.
canApplyTheme
()) {
559
public boolean
canApplyTheme
() {
561
|| (mTint != null && mTint.
canApplyTheme
());
GradientDrawable.java
[
all
...]
StateListDrawable.java
356
public boolean
canApplyTheme
() {
357
return mThemeAttrs != null || super.
canApplyTheme
();
DrawableContainer.java
615
public boolean
canApplyTheme
() {
616
return mDrawableContainerState.
canApplyTheme
();
948
if (drawables[i] != null && drawables[i].
canApplyTheme
()) {
961
public boolean
canApplyTheme
() {
967
if (d.
canApplyTheme
()) {
972
if (future != null && future.
canApplyTheme
()) {
[
all
...]
AnimatedVectorDrawable.java
510
public boolean
canApplyTheme
() {
511
return (mAnimatedVectorState != null && mAnimatedVectorState.
canApplyTheme
())
512
|| super.
canApplyTheme
();
520
if (vectorDrawable != null && vectorDrawable.
canApplyTheme
()) {
587
public boolean
canApplyTheme
() {
588
return (mVectorDrawable != null && mVectorDrawable.
canApplyTheme
())
589
|| mPendingAnims != null || super.
canApplyTheme
();
[
all
...]
LayerDrawable.java
235
if (d != null && d.
canApplyTheme
()) {
395
public boolean
canApplyTheme
() {
396
return (mLayerState != null && mLayerState.
canApplyTheme
()) || super.
canApplyTheme
();
[
all
...]
BitmapDrawable.java
846
if (state.mTint != null && state.mTint.
canApplyTheme
()) {
868
public boolean
canApplyTheme
() {
869
return mBitmapState != null && mBitmapState.
canApplyTheme
();
939
public boolean
canApplyTheme
() {
940
return mThemeAttrs != null || mTint != null && mTint.
canApplyTheme
();
[
all
...]
AnimatedStateListDrawable.java
636
public boolean
canApplyTheme
() {
637
return mAnimThemeAttrs != null || super.
canApplyTheme
();
Drawable.java
852
public boolean
canApplyTheme
() {
[
all
...]
/frameworks/support/compat/api21/android/support/v4/graphics/drawable/
DrawableCompatLollipop.java
70
public static boolean
canApplyTheme
(Drawable drawable) {
71
return drawable.
canApplyTheme
();
/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
414
public boolean
canApplyTheme
() {
416
return DrawableCompat.
canApplyTheme
(mDelegateDrawable);
462
public boolean
canApplyTheme
() {
463
return mDelegateState.
canApplyTheme
();
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
VectorDrawableCompat.java
362
public boolean
canApplyTheme
() {
364
DrawableCompat.
canApplyTheme
(mDelegateDrawable);
757
public boolean
canApplyTheme
() {
758
return mDelegateState.
canApplyTheme
();
[
all
...]
Completed in 538 milliseconds
1
2