Searched defs:Font (Results 1 – 13 of 13) sorted by relevance
42 struct Font { struct43 std::optional<FontWeight> fontWeight; argument45 std::optional<FontStyle> fontStyle; argument49 std::optional<bool> enableVariableFontWeight; argument51 bool IsEqual(const Font& other) const in IsEqual() argument73 std::string GetFontColor() const in GetFontColor() argument78 std::string GetFontFamily() const in GetFontFamily() argument93 std::optional<FontWeight> GetFontWeight() const in GetFontWeight() argument98 std::optional<Dimension> GetFontSize() const in GetFontSize() argument103 std::optional<FontStyle> GetFontStyle() const in GetFontStyle() argument
26 Font::Font() : fontImpl_(ImplFactory::CreateFontImpl()) {} in Font() function in OHOS::Rosen::Drawing::Font28 Font::Font(std::shared_ptr<Typeface> typeface, scalar size, scalar scaleX, scalar skewX) in Font() function in OHOS::Rosen::Drawing::Font31 Font::Font(const Font& font) : fontImpl_(ImplFactory::CreateFontImpl(font)) {} in Font() function in OHOS::Rosen::Drawing::Font
69 void JSMenu::Font(const JSCallbackInfo& info) in Font() function in OHOS::Ace::Framework::JSMenu
247 void JSSelect::Font(const JSCallbackInfo& info) in Font() function in OHOS::Ace::Framework::JSSelect
36 Font = 0, enumerator
236 ## Font section
555 Font, enumerator
2369 ## Font section
2372 ## Font section
3675 ## Font section
16 class Font { class