Searched refs:fontMap (Results 1 – 3 of 3) sorted by relevance
/aosp14/frameworks/base/core/tests/coretests/src/android/graphics/ |
H A D | TypefaceSystemFallbackTest.java | 245 assertEquals(1, fontMap.size()); in testBuildSystemFallback_NonExistentFontShouldBeIgnored() 246 assertTrue(fontMap.containsKey("sans-serif")); in testBuildSystemFallback_NonExistentFontShouldBeIgnored() 540 Typeface testTypeface = fontMap.get("serif"); in testBuildSystemFallback_ElegantFallback_customFallback() 553 testTypeface = fontMap.get("sans-serif"); in testBuildSystemFallback_ElegantFallback_customFallback() 587 paint.setTypeface(fontMap.get("sans-serif")); in testBuildSystemFallback_multiLingualFamilies() 630 Typeface testTypeface = fontMap.get("serif"); in testBuildSystemFallback_ElegantFallback_customFallback_missingFile() 637 testTypeface = fontMap.get("sans-serif"); in testBuildSystemFallback_ElegantFallback_customFallback_missingFile() 676 testTypeface = fontMap.get("sans-serif"); in testBuildSystemFallback_ElegantFallback_customFallback_missingFile2() 712 testTypeface = fontMap.get("google-sans"); in testBuildSystemFallback__Customization_new_named_family() 821 testTypeface = fontMap.get("google-sans"); in testBuildSystemFallback__Customization_additional_alias() [all …]
|
H A D | TypefaceTest.java | 234 Map<String, Typeface> fontMap = Map.of( in testSetSystemFontMap() local 242 Typeface.setSystemFontMap(fontMap); in testSetSystemFontMap() 245 assertEquals(fontMap.get("sans-serif"), Typeface.DEFAULT); in testSetSystemFontMap() 247 assertEquals(fontMap.get("sans-serif"), Typeface.SANS_SERIF); in testSetSystemFontMap() 248 assertEquals(fontMap.get("serif"), Typeface.SERIF); in testSetSystemFontMap() 249 assertEquals(fontMap.get("monospace"), Typeface.MONOSPACE); in testSetSystemFontMap() 252 assertEquals(fontMap.get("sans-serif"), Typeface.defaultFromStyle(Typeface.NORMAL)); in testSetSystemFontMap() 260 assertEquals(fontMap.get("sample"), Typeface.create("sample", Typeface.NORMAL)); in testSetSystemFontMap() 262 fontMap.get("sample-italic"), in testSetSystemFontMap()
|
/aosp14/frameworks/base/graphics/java/android/graphics/ |
H A D | Typeface.java | 1261 public static @NonNull SharedMemory serializeFontMap(@NonNull Map<String, Typeface> fontMap) 1263 long[] nativePtrs = new long[fontMap.size()]; 1267 for (Map.Entry<String, Typeface> entry : fontMap.entrySet()) {
|