Searched refs:csl (Results 1 – 3 of 3) sorted by relevance
100 ColorStateList csl = ref != null ? ref.get() : null; in valueOf() local102 if (csl != null) { in valueOf()103 return csl; in valueOf()106 csl = new ColorStateList(EMPTY, new int[] { color }); in valueOf()107 sCache.put(color, new WeakReference<ColorStateList>(csl)); in valueOf()108 return csl; in valueOf()
754 ColorStateList csl = loadColorStateList(mTmpValue, id); in getColor() local755 return csl.getDefaultColor(); in getColor()2013 ColorStateList csl; in loadColorStateList() local2018 csl = mPreloadedColorStateLists.get(key); in loadColorStateList()2019 if (csl != null) { in loadColorStateList()2020 return csl; in loadColorStateList()2023 csl = ColorStateList.valueOf(value.data); in loadColorStateList()2025 mPreloadedColorStateLists.put(key, csl); in loadColorStateList()2028 return csl; in loadColorStateList()2031 csl = getCachedColorStateList(key); in loadColorStateList()[all …]
319 ColorStateList csl = mResources.loadColorStateList( in getColor() local321 return csl.getDefaultColor(); in getColor()