Searched refs:csl (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/content/res/ |
D | ColorStateList.java | 206 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()
|
D | ResourcesImpl.java | 1010 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;
|
D | Resources.java | 1090 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()
|
D | TypedArray.java | 525 final ColorStateList csl = mResources.loadColorStateList( in getColor() local 527 return csl.getDefaultColor(); in getColor()
|