Home
last modified time | relevance | path

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

/external/icu/icu4c/source/layoutex/
DRunArrays.cpp79 : RunArray(initialCapacity), fFonts(NULL) in FontRuns()
82 fFonts = LE_NEW_ARRAY(const LEFontInstance *, initialCapacity); in FontRuns()
89 LE_DELETE_ARRAY(fFonts); in ~FontRuns()
90 fFonts = NULL; in ~FontRuns()
97 fFonts = LE_NEW_ARRAY(const LEFontInstance *, capacity); in init()
103 fFonts = (const LEFontInstance **) LE_GROW_ARRAY(fFonts, capacity); in grow()
111 LEFontInstance **fonts = (LEFontInstance **) fFonts; in add()
125 return fFonts[run]; in getFont()
/external/skia/tests/
DFontMgrAndroidParserTest.cpp44 !strcmp(fontFamilies[0]->fFonts[0].fFileName.c_str(), firstExpectedFile)); in ValidateLoadedFonts()
61 for (int j = 0; j < family.fFonts.count(); ++j) { in ValidateLoadedFonts()
62 FontFileInfo& file = family.fFonts[j]; in ValidateLoadedFonts()
90 for (int j = 0; j < fontFamilies[i]->fFonts.count(); ++j) { in DumpLoadedFonts()
91 const FontFileInfo& ffi = fontFamilies[i]->fFonts[j]; in DumpLoadedFonts()
/external/icu/icu4c/source/layoutex/layout/
DRunArrays.h382 const LEFontInstance **fFonts; variable
386 : RunArray(0), fFonts(NULL) in FontRuns()
392 : RunArray(0), fFonts(NULL) in FontRuns()
398 : RunArray(limits, count), fFonts(fonts) in FontRuns()
/external/skia/src/pdf/
DSkPDFDocument.h81 void registerFont(SkPDFFont* f) { fFonts.add(f); } in registerFont()
87 SkTHashSet<SkPDFFont*> fFonts; variable
DSkPDFDocument.cpp254 fFonts.reset(); in reset()
424 fFonts.foreach([canon](SkPDFFont* p){ p->getFontSubset(canon); }); in onClose()
/external/skia/src/ports/
DSkFontMgr_android_parser.cpp209 FontFileInfo& file = self->fCurrentFamily->fFonts.push_back(); in __anon4e75f4fd0202()
341 for (int i = 0; i < targetFamily->fFonts.count(); i++) { in __anon4e75f4fd0902()
342 if (targetFamily->fFonts[i].fWeight == weight) { in __anon4e75f4fd0902()
343 family->fFonts.push_back(targetFamily->fFonts[i]); in __anon4e75f4fd0902()
382 FontFileInfo& newFileInfo = currentFamily.fFonts.push_back(); in __anon4e75f4fd0c02()
396 if (currentFamily.fFonts.count() > 1 && currentFamily.fVariant != prevVariant) { in __anon4e75f4fd0c02()
405 if (currentFamily.fFonts.count() > 1 && currentFamily.fLanguage != prevLang) { in __anon4e75f4fd0c02()
DSkFontMgr_android_parser.h95 SkTArray<FontFileInfo, true> fFonts; member
DSkFontMgr_android.cpp154 for (int i = 0; i < family.fFonts.count(); ++i) { in SkFontStyleSet_Android()
155 const FontFileInfo& fontFile = family.fFonts[i]; in SkFontStyleSet_Android()