Lines Matching refs:fontCollection
24 const ParagraphStyle& style, sk_sp<FontCollection> fontCollection) {
25 return ParagraphBuilderImpl::make(style, fontCollection);
29 const ParagraphStyle& style, sk_sp<FontCollection> fontCollection) {
30 return std::make_unique<ParagraphBuilderImpl>(style, fontCollection);
34 const ParagraphStyle& style, sk_sp<FontCollection> fontCollection, std::unique_ptr<SkUnicode> unicode) {
38 return std::make_unique<ParagraphBuilderImpl>(style, fontCollection, std::move(unicode));
42 const ParagraphStyle& style, sk_sp<FontCollection> fontCollection, std::unique_ptr<SkUnicode> unicode)
43 : ParagraphBuilder(style, fontCollection)
45 , fFontCollection(std::move(fontCollection))
57 const ParagraphStyle& style, sk_sp<FontCollection> fontCollection)
58 : ParagraphBuilderImpl(style, fontCollection, SkUnicode::Make())