Searched refs:fFonts (Results 1 – 7 of 7) sorted by relevance
/external/icu/icu4c/source/layoutex/ |
D | RunArrays.cpp | 77 : 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/chromium_org/third_party/skia/src/ports/ |
D | SkFontConfigParser_android.cpp | 195 for (int i = 0; i < targetFamily->fFonts.count(); i++) { in aliasElementHandler() 196 if (targetFamily->fFonts[i].fWeight == weight) { in aliasElementHandler() 197 family->fFonts.push_back(targetFamily->fFonts[i]); in aliasElementHandler() 207 for (int i = 0; i < family->fFonts.count(); i++) { in findWeight400() 208 if (family->fFonts[i].fWeight == 400) { in findWeight400() 221 for (int i = 0; i < family->fFonts.count(); i++) { in countDesiredWeight() 222 if (desiredWeight(family->fFonts[i].fWeight)) { in countDesiredWeight() 233 for (int i = 1, j = 0; i < family->fFonts.count(); i++) { in purgeUndesiredWeights() 234 if (desiredWeight(family->fFonts[j].fWeight)) { in purgeUndesiredWeights() 237 if ((i != j) && desiredWeight(family->fFonts[i].fWeight)) { in purgeUndesiredWeights() [all …]
|
D | SkFontConfigParser_android.h | 84 SkTArray<FontFileInfo> fFonts; member
|
D | SkFontMgr_android.cpp | 147 for (int i = 0; i < family.fFonts.count(); ++i) { in SkFontStyleSet_Android() 148 const FontFileInfo& fontFile = family.fFonts[i]; in SkFontStyleSet_Android()
|
/external/chromium_org/third_party/skia/tests/ |
D | FontConfigParser.cpp | 27 !strcmp(fontFamilies[0]->fFonts[0].fFileName.c_str(), in ValidateLoadedFonts() 47 for (int j = 0; j < fontFamilies[i]->fFonts.count(); ++j) { in DumpLoadedFonts() 48 const FontFileInfo& ffi = fontFamilies[i]->fFonts[j]; in DumpLoadedFonts()
|
/external/icu/icu4c/source/layoutex/layout/ |
D | RunArrays.h | 380 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/ |
D | SkFontConfigInterface_android.cpp | 117 SkTArray<FontRec> fFonts; member in SkFontConfigInterfaceAndroid 205 fFonts(fontFamilies.count()), in SkFontConfigInterfaceAndroid() 225 if (has_font(fFonts, filename)) { in SkFontConfigInterfaceAndroid() 231 FontRec& fontRec = fFonts.push_back(); in SkFontConfigInterfaceAndroid() 237 const FontRecID fontRecID = fFonts.count() - 1; in SkFontConfigInterfaceAndroid() 253 i, fFonts.count() - 1, family->fIsFallbackFont, filename.c_str())); in SkFontConfigInterfaceAndroid() 256 i, fFonts.count() - 1, family->fIsFallbackFont, filename.c_str())); in SkFontConfigInterfaceAndroid() 305 DEBUG_FONT(("---- We have %d system fonts", fFonts.count())); in SkFontConfigInterfaceAndroid() 429 FontRec& fontRec = fFonts[fontRecID]; in matchFamilyName() 492 FontRec& fontRec = fFonts[fontRecID]; in getTypefaceForFontRec() [all …]
|