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/
DFontConfigParser.cpp40 !strcmp(fontFamilies[0]->fFonts[0].fFileName.c_str(), firstExpectedFile)); in ValidateLoadedFonts()
57 for (int j = 0; j < family.fFonts.count(); ++j) { in ValidateLoadedFonts()
58 FontFileInfo& file = family.fFonts[j]; in ValidateLoadedFonts()
86 for (int j = 0; j < fontFamilies[i]->fFonts.count(); ++j) { in DumpLoadedFonts()
87 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/
DSkFontConfigParser_android.cpp183 FontFileInfo& file = self->fCurrentFamily->fFonts.push_back(); in __anon50d49d8f0102()
309 for (int i = 0; i < targetFamily->fFonts.count(); i++) { in __anon50d49d8f0702()
310 if (targetFamily->fFonts[i].fWeight == weight) { in __anon50d49d8f0702()
311 family->fFonts.push_back(targetFamily->fFonts[i]); in __anon50d49d8f0702()
350 FontFileInfo& newFileInfo = currentFamily.fFonts.push_back(); in __anon50d49d8f0a02()
364 if (currentFamily.fFonts.count() > 1 && currentFamily.fVariant != prevVariant) { in __anon50d49d8f0a02()
373 if (currentFamily.fFonts.count() > 1 && currentFamily.fLanguage != prevLang) { in __anon50d49d8f0a02()
DSkFontConfigParser_android.h89 SkTArray<FontFileInfo, true> fFonts; member
DSkFontMgr_android.cpp123 for (int i = 0; i < family.fFonts.count(); ++i) { in SkFontStyleSet_Android()
124 const FontFileInfo& fontFile = family.fFonts[i]; in SkFontStyleSet_Android()