Home
last modified time | relevance | path

Searched refs:csl (Results 1 – 4 of 4) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
DThemeUtils.java86 final ColorStateList csl = getThemeAttrColorStateList(context, attr); in getDisabledThemeAttrColor() local
87 if (csl != null && csl.isStateful()) { in getDisabledThemeAttrColor()
89 return csl.getColorForState(DISABLED_STATE_SET, csl.getDefaultColor()); in getDisabledThemeAttrColor()
/frameworks/base/core/java/android/content/res/
DResources.java976 final ColorStateList csl = loadColorStateList(value, id, theme); in getColor() local
983 return csl.getDefaultColor(); in getColor()
1006 final ColorStateList csl = getColorStateList(id, null); in getColorStateList() local
1007 if (csl != null && csl.canApplyTheme()) { in getColorStateList()
1013 return csl; in getColorStateList()
2663 ColorStateList csl; in loadColorStateList() local
2674 csl = ColorStateList.valueOf(value.data); in loadColorStateList()
2679 sPreloadedColorStateLists.put(key, csl.getConstantState()); in loadColorStateList()
2683 return csl; in loadColorStateList()
2687 csl = cache.getInstance(key, theme); in loadColorStateList()
[all …]
DColorStateList.java132 final ColorStateList csl = new ColorStateList(EMPTY, new int[] { color }); in valueOf() local
133 sCache.put(color, new WeakReference<>(csl)); in valueOf()
134 return csl; in valueOf()
DTypedArray.java439 final ColorStateList csl = mResources.loadColorStateList( in getColor() local
441 return csl.getDefaultColor(); in getColor()