Home
last modified time | relevance | path

Searched refs:typefaceImpl (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H A Dskia_typeface.cpp138 return std::make_shared<Typeface>(typefaceImpl); in MakeClone()
176 return std::make_shared<Typeface>(typefaceImpl); in MakeDefault()
188 return std::make_shared<Typeface>(typefaceImpl); in MakeFromFile()
212 return std::make_shared<Typeface>(typefaceImpl); in MakeFromFile()
226 typefaces.emplace_back(std::make_shared<Typeface>(typefaceImpl)); in GetSystemFonts()
245 return std::make_shared<Typeface>(typefaceImpl); in MakeFromStream()
258 return std::make_shared<Typeface>(typefaceImpl); in MakeFromName()
270 auto typefaceImpl = std::make_shared<SkiaTypeface>(typefacePtr); in SerializeTypeface() local
271 auto customTypeface = std::make_shared<Typeface>(typefaceImpl); in SerializeTypeface()
328 auto typefaceImpl = std::make_shared<SkiaTypeface>(skTypeface); in Deserialize() local
[all …]
H A Dskia_font_style_set.cpp42 std::shared_ptr<TypefaceImpl> typefaceImpl = std::make_shared<SkiaTypeface>(sk_sp(skTypeface)); in CreateTypeface() local
43 return new Typeface(typefaceImpl); in CreateTypeface()
81 std::shared_ptr<TypefaceImpl> typefaceImpl = std::make_shared<SkiaTypeface>(sk_sp(skTypeface)); in MatchStyle() local
82 return new Typeface(typefaceImpl); in MatchStyle()
H A Dskia_font_mgr.cpp128 std::shared_ptr<TypefaceImpl> typefaceImpl = std::make_shared<SkiaTypeface>(typeface); in LoadDynamicFont() local
129 return new Typeface(typefaceImpl); in LoadDynamicFont()
169 std::shared_ptr<TypefaceImpl> typefaceImpl = std::make_shared<SkiaTypeface>(typeface); in LoadThemeFont() local
170 return new Typeface(typefaceImpl); in LoadThemeFont()
191 std::shared_ptr<TypefaceImpl> typefaceImpl = std::make_shared<SkiaTypeface>(sk_sp(skTypeface)); in MatchFamilyStyleCharacter() local
192 return new Typeface(typefaceImpl); in MatchFamilyStyleCharacter()
223 std::shared_ptr<TypefaceImpl> typefaceImpl = std::make_shared<SkiaTypeface>(sk_sp(skTypeface)); in MatchFamilyStyle() local
224 return new Typeface(typefaceImpl); in MatchFamilyStyle()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/unittest/transaction/
H A Drs_interfaces_test.cpp103 auto typefaceImpl = std::make_shared<Drawing::SkiaTypeface>(); variable
104 EXPECT_NE(typefaceImpl, nullptr);
105 auto typeface = std::make_shared<Drawing::Typeface>(typefaceImpl);
124 auto typefaceImpl = std::make_shared<Drawing::SkiaTypeface>(); variable
125 auto typeface = std::make_shared<Drawing::Typeface>(typefaceImpl);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/text/
H A Dtypeface.cpp24 Typeface::Typeface(std::shared_ptr<TypefaceImpl> typefaceImpl) noexcept : typefaceImpl_(typefaceImp… in Typeface() argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/text/
H A Dtypeface.h34 explicit Typeface(std::shared_ptr<TypefaceImpl> typefaceImpl) noexcept;