Lines Matching refs:fm
14 void SkOrderedFontMgr::append(sk_sp<SkFontMgr> fm) { in append() argument
15 fList.push_back(std::move(fm)); in append()
20 for (const auto& fm : fList) { in onCountFamilies() local
21 count += fm->countFamilies(); in onCountFamilies()
27 for (const auto& fm : fList) { in onGetFamilyName() local
28 const int count = fm->countFamilies(); in onGetFamilyName()
30 return fm->getFamilyName(index, familyName); in onGetFamilyName()
37 for (const auto& fm : fList) { in onCreateStyleSet() local
38 const int count = fm->countFamilies(); in onCreateStyleSet()
40 return fm->createStyleSet(index); in onCreateStyleSet()
48 for (const auto& fm : fList) { in onMatchFamily() local
49 if (auto fs = fm->matchFamily(familyName)) { in onMatchFamily()
58 for (const auto& fm : fList) { in onMatchFamilyStyle() local
59 if (auto tf = fm->matchFamilyStyle(family, style)) { in onMatchFamilyStyle()
70 for (const auto& fm : fList) { in onMatchFamilyStyleCharacter() local
71 if (auto tf = fm->matchFamilyStyleCharacter(familyName, style, bcp47, bcp47Count, uni)) { in onMatchFamilyStyleCharacter()