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.java206 final ColorStateList csl = new ColorStateList(EMPTY, new int[] { color }); in valueOf() local
207 sCache.put(color, new WeakReference<>(csl)); in valueOf()
208 return csl; in valueOf()
DResourcesImpl.java1010 ColorStateList csl = loadColorStateList(wrapper, value, id, null);
1011 return new ColorStateListDrawable(csl);
1196 ColorStateList csl;
1203 csl = ColorStateList.valueOf(value.data);
1208 sPreloadedComplexColors.put(key, csl.getConstantState());
1212 return csl;
DResources.java1090 final ColorStateList csl = impl.loadColorStateList(this, value, id, theme); in getColor() local
1091 return csl.getDefaultColor(); in getColor()
1117 final ColorStateList csl = getColorStateList(id, null); in getColorStateList() local
1118 if (csl != null && csl.canApplyTheme()) { in getColorStateList()
1124 return csl; in getColorStateList()
DTypedArray.java525 final ColorStateList csl = mResources.loadColorStateList( in getColor() local
527 return csl.getDefaultColor(); in getColor()