Home
last modified time | relevance | path

Searched refs:sSystemFontMap (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
DTypeface.java156 static final Map<String, Typeface> sSystemFontMap = new ArrayMap<>(); field in Typeface
295 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 …]
/frameworks/layoutlib/bridge/src/android/graphics/
DTypeface_Accessor.java26 return Typeface.sSystemFontMap.containsKey(fontName); in isSystemFont()