Searched refs:sSystemFontMap (Results 1 – 2 of 2) sorted by relevance
156 static final Map<String, Typeface> sSystemFontMap = new ArrayMap<>(); field in Typeface295 return sSystemFontMap.containsKey(familyName); in hasFontFamily()1216 Typeface tf = sSystemFontMap.get(familyName);1351 return sSystemFontMap;1400 sSystemFontMap.clear();1401 sSystemFontMap.putAll(systemFontMap);1404 if (sSystemFontMap.containsKey(DEFAULT_FAMILY)) {1405 setDefault(sSystemFontMap.get(DEFAULT_FAMILY));1457 oldGenerics.add(sSystemFontMap.get("sans-serif"));1458 sSystemFontMap.put("sans-serif", genericFamilies.get(0));[all …]
26 return Typeface.sSystemFontMap.containsKey(fontName); in isSystemFont()