Home
last modified time | relevance | path

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

/external/skia/src/ports/
DSkFontMgr_android_parser.h69 struct FontFileInfo { struct
70 FontFileInfo() : fIndex(0), fWeight(0), fStyle(Style::kAuto) { } in FontFileInfo() argument
95 SkTArray<FontFileInfo, true> fFonts; argument
DSkFontMgr_android_parser.cpp105 FontFileInfo* fCurrentFontInfo; // The fontInfo being created, owned by fCurrentFamily
155 FontFileInfo& file = *self->fCurrentFontInfo; in __anonbbaf037e0102()
207 FontFileInfo& file = self->fCurrentFamily->fFonts.push_back(); in __anonbbaf037e0202()
220 file.fStyle = FontFileInfo::Style::kNormal; in __anonbbaf037e0202()
222 file.fStyle = FontFileInfo::Style::kItalic; in __anonbbaf037e0202()
380 FontFileInfo& newFileInfo = currentFamily.fFonts.push_back(); in __anonbbaf037e0c02()
DSkFontMgr_android.cpp152 const FontFileInfo& fontFile = family.fFonts[i]; in SkFontStyleSet_Android()
180 case FontFileInfo::Style::kAuto: slant = style.slant(); break; in SkFontStyleSet_Android()
181 case FontFileInfo::Style::kNormal: slant = SkFontStyle::kUpright_Slant; break; in SkFontStyleSet_Android()
182 case FontFileInfo::Style::kItalic: slant = SkFontStyle::kItalic_Slant; break; in SkFontStyleSet_Android()
/external/skia/tests/
DFontMgrAndroidParserTest.cpp61 FontFileInfo& file = family.fFonts[j]; in ValidateLoadedFonts()
90 const FontFileInfo& ffi = fontFamilies[i]->fFonts[j]; in DumpLoadedFonts()