Lines Matching refs:match
180 sk_sp<SkTypeface> match = matchTypeface(familyName, fontStyle);
181 if (match && fontArgs) {
182 match = CloneTypeface(match, fontArgs);
184 if (match) {
185 typefaces.emplace_back(std::move(match));
190 sk_sp<SkTypeface> match;
192 match = matchTypeface(familyName, fontStyle);
193 if (match) {
194 match = CloneTypeface(match, fontArgs);
198 if (!match) {
200 match = manager->legacyMakeTypeface(nullptr, fontStyle);
201 if (match) {
206 if (match) {
207 typefaces.emplace_back(std::move(match));
231 std::shared_ptr<RSTypeface> match = matchTypeface(familyName, fontStyle);
232 if (match && fontArgs) {
233 match = CloneTypeface(match, fontArgs);
235 if (match) {
236 typefaces.emplace_back(std::move(match));
241 std::shared_ptr<RSTypeface> match;
243 match = matchTypeface(familyName, fontStyle);
244 if (match) {
245 match = CloneTypeface(match, fontArgs);
250 if (!match) {
252 match = RSLegacyMakeTypeface(manager, nullptr, fontStyle);
253 if (match) {
258 if (match) {
259 typefaces.emplace_back(std::move(match));
277 sk_sp<SkTypeface> match(set->matchStyle(fontStyle));
278 if (match) {
279 return match;
293 std::shared_ptr<RSTypeface> match(set->MatchStyle(fontStyle));
294 if (match) {
295 return match;
339 sk_sp<SkTypeface> match = sk_sp<SkTypeface>(fDefaultFontManager->matchFamilyStyle(familyName.c_str(),
341 if (match) {
342 return match;
354 std::shared_ptr<RSTypeface> match = std::shared_ptr<RSTypeface>(
356 if (match) {
357 return match;