Home | History | Annotate | Download | only in ports

Lines Matching full:familyname

39     SkTypeface_Custom(Style style, bool sysFont, bool isFixedPitch, const SkString familyName)
41 , fIsSysFont(sysFont), fFamilyName(familyName)
82 bool isFixedPitch, const SkString familyName)
83 : INHERITED(style, sysFont, isFixedPitch, familyName)
105 bool isFixedPitch, const SkString familyName)
106 : INHERITED(style, sysFont, isFixedPitch, familyName)
139 explicit SkFontStyleSet_Custom(const SkString familyName) : fFamilyName(familyName) { }
222 virtual void onGetFamilyName(int index, SkString* familyName) SK_OVERRIDE {
224 familyName->set(fFamilies[index]->fFamilyName);
232 virtual SkFontStyleSet_Custom* onMatchFamily(const char familyName[]) SK_OVERRIDE {
234 if (fFamilies[i]->fFamilyName.equals(familyName)) {
241 virtual SkTypeface* onMatchFamilyStyle(const char familyName[],
244 SkAutoTUnref<SkFontStyleSet> sset(this->matchFamily(familyName));
287 virtual SkTypeface* onLegacyCreateTypeface(const char familyName[],
300 if (NULL != familyName) {
301 tf = this->onMatchFamilyStyle(familyName, style);