Lines Matching refs:FontCollection
3 #include "modules/skparagraph/include/FontCollection.h"
35 bool FontCollection::fIsAdpaterTextHeightEnabled = false;
38 bool FontCollection::FamilyKey::operator==(const FontCollection::FamilyKey& other) const {
44 size_t FontCollection::FamilyKey::Hasher::operator()(const FontCollection::FamilyKey& key) const {
62 FontCollection::FontCollection()
66 size_t FontCollection::getFontManagersCount() const {
72 void FontCollection::setAssetFontManager(sk_sp<SkFontMgr> font_manager) {
74 void FontCollection::setAssetFontManager(std::shared_ptr<RSFontMgr> font_manager) {
81 void FontCollection::setDynamicFontManager(sk_sp<SkFontMgr> font_manager) {
83 void FontCollection::setDynamicFontManager(std::shared_ptr<RSFontMgr> font_manager) {
90 void FontCollection::setTestFontManager(sk_sp<SkFontMgr> font_manager) {
92 void FontCollection::setTestFontManager(std::shared_ptr<RSFontMgr> font_manager)
100 void FontCollection::setDefaultFontManager(sk_sp<SkFontMgr> fontManager,
103 void FontCollection::setDefaultFontManager(std::shared_ptr<RSFontMgr> fontManager,
112 void FontCollection::setDefaultFontManager(sk_sp<SkFontMgr> fontManager,
115 void FontCollection::setDefaultFontManager(std::shared_ptr<RSFontMgr> fontManager,
124 void FontCollection::setDefaultFontManager(sk_sp<SkFontMgr> fontManager) {
126 void FontCollection::setDefaultFontManager(std::shared_ptr<RSFontMgr> fontManager) {
134 std::vector<sk_sp<SkFontMgr>> FontCollection::getFontManagerOrder() const {
137 std::vector<std::shared_ptr<RSFontMgr>> FontCollection::getFontManagerOrder() const {
156 std::vector<sk_sp<SkTypeface>> FontCollection::findTypefaces(const std::vector<SkString>& familyNames, SkFontStyle fontStyle) {
158 std::vector<std::shared_ptr<RSTypeface>> FontCollection::findTypefaces(
166 std::vector<sk_sp<SkTypeface>> FontCollection::findTypefaces(const std::vector<SkString>& familyNames,
216 std::vector<std::shared_ptr<RSTypeface>> FontCollection::findTypefaces(const std::vector<SkString>& familyNames,
270 sk_sp<SkTypeface> FontCollection::matchTypeface(const SkString& familyName, SkFontStyle fontStyle) {
286 std::shared_ptr<RSTypeface> FontCollection::matchTypeface(const SkString& familyName, RSFontStyle fontStyle) {
306 sk_sp<SkTypeface> FontCollection::defaultFallback(SkUnichar unicode, SkFontStyle fontStyle, const SkString& locale) {
308 std::shared_ptr<RSTypeface> FontCollection::defaultFallback(
333 sk_sp<SkTypeface> FontCollection::defaultFallback() {
348 std::shared_ptr<RSTypeface> FontCollection::defaultFallback() {
406 sk_sp<SkTypeface> FontCollection::CloneTypeface(sk_sp<SkTypeface> typeface,
410 std::shared_ptr<RSTypeface> FontCollection::CloneTypeface(std::shared_ptr<RSTypeface> typeface,
446 void FontCollection::disableFontFallback() {
451 void FontCollection::enableFontFallback() {
456 void FontCollection::clearCaches() {