Home
last modified time | relevance | path

Searched refs:CreateFont (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/
H A Dimpl_factory.cpp337 return DDGRImplFactory::CreateFont(); in CreateFontImpl()
340 return EngineImplFactory::CreateFont(); in CreateFontImpl()
348 return DDGRImplFactory::CreateFont(typeface, size, scaleX, skewX); in CreateFontImpl()
351 return EngineImplFactory::CreateFont(typeface, size, scaleX, skewX); in CreateFontImpl()
358 return DDGRImplFactory::CreateFont(font); in CreateFontImpl()
361 return EngineImplFactory::CreateFont(font); in CreateFontImpl()
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/
H A Djs_drawing_init.h29 napi_value CreateFont(napi_env env);
32 static napi_value CreateFont(napi_env env, napi_callback_info info);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H A Dskia_impl_factory.h91 static std::unique_ptr<FontImpl> CreateFont();
92 static std::unique_ptr<FontImpl> CreateFont(std::shared_ptr<Typeface> typeface,
94 static std::unique_ptr<FontImpl> CreateFont(const Font& font);
H A Dskia_impl_factory.cpp211 std::unique_ptr<FontImpl> SkiaImplFactory::CreateFont() in CreateFont() function in OHOS::Rosen::Drawing::SkiaImplFactory
216 std::unique_ptr<FontImpl> SkiaImplFactory::CreateFont(std::shared_ptr<Typeface> typeface, in CreateFont() function in OHOS::Rosen::Drawing::SkiaImplFactory
222 std::unique_ptr<FontImpl> SkiaImplFactory::CreateFont(const Font& font) in CreateFont() function in OHOS::Rosen::Drawing::SkiaImplFactory
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/font_napi/
H A Djs_font.h34 static napi_value CreateFont(napi_env env, napi_callback_info info);
H A Djs_font.cpp86 DECLARE_NAPI_STATIC_FUNCTION("createFont", JsFont::CreateFont), in Init()
128 napi_value JsFont::CreateFont(napi_env env, napi_callback_info info) in CreateFont() function in OHOS::Rosen::Drawing::JsFont
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/text/run_napi/
H A Djs_run.cpp230 napi_value resultValue = Drawing::JsFont::CreateFont(env, info); in OnGetFont()