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