Home
last modified time | relevance | path

Searched refs:fFonts (Results 1 – 6 of 6) sorted by relevance

/external/icu/icu4c/source/layoutex/
DRunArrays.cpp77 : RunArray(initialCapacity), fFonts(NULL) in FontRuns()
80 fFonts = LE_NEW_ARRAY(const LEFontInstance *, initialCapacity); in FontRuns()
87 LE_DELETE_ARRAY(fFonts); in ~FontRuns()
88 fFonts = NULL; in ~FontRuns()
95 fFonts = LE_NEW_ARRAY(const LEFontInstance *, capacity); in init()
101 fFonts = (const LEFontInstance **) LE_GROW_ARRAY(fFonts, capacity); in grow()
109 LEFontInstance **fonts = (LEFontInstance **) fFonts; in add()
123 return fFonts[run]; in getFont()
/external/skia/tests/
DFontMgrAndroidParserTest.cpp43 !strcmp(fontFamilies[0]->fFonts[0].fFileName.c_str(), firstExpectedFile)); in ValidateLoadedFonts()
60 for (int j = 0; j < family.fFonts.count(); ++j) { in ValidateLoadedFonts()
61 FontFileInfo& file = family.fFonts[j]; in ValidateLoadedFonts()
89 for (int j = 0; j < fontFamilies[i]->fFonts.count(); ++j) { in DumpLoadedFonts()
90 const FontFileInfo& ffi = fontFamilies[i]->fFonts[j]; in DumpLoadedFonts()
/external/icu/icu4c/source/layoutex/layout/
DRunArrays.h380 const LEFontInstance **fFonts; variable
384 : RunArray(0), fFonts(NULL) in FontRuns()
390 : RunArray(0), fFonts(NULL) in FontRuns()
396 : RunArray(limits, count), fFonts(fonts) in FontRuns()
/external/skia/src/ports/
DSkFontMgr_android_parser.cpp207 FontFileInfo& file = self->fCurrentFamily->fFonts.push_back(); in __anoncd57d97f0202()
339 for (int i = 0; i < targetFamily->fFonts.count(); i++) { in __anoncd57d97f0902()
340 if (targetFamily->fFonts[i].fWeight == weight) { in __anoncd57d97f0902()
341 family->fFonts.push_back(targetFamily->fFonts[i]); in __anoncd57d97f0902()
380 FontFileInfo& newFileInfo = currentFamily.fFonts.push_back(); in __anoncd57d97f0c02()
394 if (currentFamily.fFonts.count() > 1 && currentFamily.fVariant != prevVariant) { in __anoncd57d97f0c02()
403 if (currentFamily.fFonts.count() > 1 && currentFamily.fLanguage != prevLang) { in __anoncd57d97f0c02()
DSkFontMgr_android_parser.h95 SkTArray<FontFileInfo, true> fFonts; member
DSkFontMgr_android.cpp151 for (int i = 0; i < family.fFonts.count(); ++i) { in SkFontStyleSet_Android()
152 const FontFileInfo& fontFile = family.fFonts[i]; in SkFontStyleSet_Android()