Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/content/res/
DColorStateList.java191 final ColorStateList csl = new ColorStateList(EMPTY, new int[] { color }); in valueOf() local
192 sCache.put(color, new WeakReference<>(csl)); in valueOf()
193 return csl; in valueOf()
DResources.java991 final ColorStateList csl = impl.loadColorStateList(this, value, id, theme); in getColor() local
992 return csl.getDefaultColor(); in getColor()
1018 final ColorStateList csl = getColorStateList(id, null); in getColorStateList() local
1019 if (csl != null && csl.canApplyTheme()) { in getColorStateList()
1025 return csl; in getColorStateList()
DResourcesImpl.java919 ColorStateList csl = loadColorStateList(wrapper, value, id, null); in loadColorOrXmlDrawable() local
920 return new ColorStateListDrawable(csl); in loadColorOrXmlDrawable()
1104 ColorStateList csl; in getColorStateListFromInt() local
1111 csl = ColorStateList.valueOf(value.data); in getColorStateListFromInt()
1116 sPreloadedComplexColors.put(key, csl.getConstantState()); in getColorStateListFromInt()
1120 return csl; in getColorStateListFromInt()
DTypedArray.java519 final ColorStateList csl = mResources.loadColorStateList( in getColor() local
521 return csl.getDefaultColor(); in getColor()