Home | History | Annotate | Download | only in ports

Lines Matching refs:SkFontStyleSet_Custom

133  *  SkFontStyleSet_Custom
137 class SkFontStyleSet_Custom : public SkFontStyleSet {
139 explicit SkFontStyleSet_Custom(const SkString familyName) : fFamilyName(familyName) { }
207 * This class is essentially a collection of SkFontStyleSet_Custom,
208 * one SkFontStyleSet_Custom for each family. This class may be modified
227 virtual SkFontStyleSet_Custom* onCreateStyleSet(int index) SK_OVERRIDE {
232 virtual SkFontStyleSet_Custom* onMatchFamily(const char familyName[]) SK_OVERRIDE {
348 SkFontStyleSet_Custom* addTo = this->onMatchFamily(realname.c_str());
350 addTo = new SkFontStyleSet_Custom(realname);
373 SkFontStyleSet_Custom* family = new SkFontStyleSet_Custom(SkString());
383 SkFontStyleSet_Custom* set = this->onMatchFamily(gDefaultNames[i]);
405 SkTArray<SkAutoTUnref<SkFontStyleSet_Custom>, true> fFamilies;
406 SkFontStyleSet_Custom* gDefaultFamily;