Home
last modified time | relevance | path

Searched refs:fontMap (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/graphics/
DTypefaceSystemFallbackTest.java109 ArrayMap<String, Typeface> fontMap, ArrayMap<String, FontFamily[]> fallbackMap) { in buildSystemFallback() argument
115 Typeface.buildSystemFallback(TEST_FONTS_XML, TEST_FONT_DIR, fontMap, fallbackMap); in buildSystemFallback()
120 final ArrayMap<String, Typeface> fontMap = new ArrayMap<>(); in testBuildSystemFallback() local
123 Typeface.buildSystemFallback(SYSTEM_FONTS_XML, SYSTEM_FONT_DIR, fontMap, fallbackMap); in testBuildSystemFallback()
125 assertFalse(fontMap.isEmpty()); in testBuildSystemFallback()
144 final ArrayMap<String, Typeface> fontMap = new ArrayMap<>(); in testBuildSystemFallback_NonExistentFontShouldBeIgnored() local
147 buildSystemFallback(xml, fontMap, fallbackMap); in testBuildSystemFallback_NonExistentFontShouldBeIgnored()
149 assertEquals(1, fontMap.size()); in testBuildSystemFallback_NonExistentFontShouldBeIgnored()
150 assertTrue(fontMap.containsKey("sans-serif")); in testBuildSystemFallback_NonExistentFontShouldBeIgnored()
172 final ArrayMap<String, Typeface> fontMap = new ArrayMap<>(); in testBuildSystemFallback_NamedFamily() local
[all …]
/frameworks/minikin/libs/minikin/
DLayout.cpp759 int* fontMap; in appendLayout() local
761 fontMap = fontMapStack; in appendLayout()
763 fontMap = new int[src.mFaces.size()]; in appendLayout()
767 fontMap[i] = font_ix; in appendLayout()
772 int font_ix = fontMap[srcGlyph.font_ix]; in appendLayout()
791 if (fontMap != fontMapStack) { in appendLayout()
792 delete[] fontMap; in appendLayout()
/frameworks/base/graphics/java/android/graphics/
DTypeface.java1058 ArrayMap<String, Typeface> fontMap, ArrayMap<String, FontFamily[]> fallbackMap) { in buildSystemFallback() argument
1105 fontMap.put(fallbackName, new Typeface(nativeCreateFromArray( in buildSystemFallback()
1111 Typeface base = fontMap.get(alias.getToName()); in buildSystemFallback()
1117 fontMap.put(alias.getName(), newFace); in buildSystemFallback()
/frameworks/layoutlib/bridge/src/android/graphics/
DTypeface_Delegate.java229 ArrayMap<String, Typeface> fontMap, ArrayMap<String, FontFamily[]> fallbackMap) { in buildSystemFallback() argument
230 Typeface.buildSystemFallback_Original(getFontLocation() + "/fonts.xml", fontDir, fontMap, in buildSystemFallback() local