Searched refs:fontJsonObject (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/menu/ |
H A D | menu_layout_property.cpp | 82 auto fontJsonObject = JsonUtil::Create(true); in ToJsonValue() local 83 fontJsonObject->Put("size", GetFontSize().value_or(defaultFontSize).ToString().c_str()); in ToJsonValue() 84 fontJsonObject->Put("weight", in ToJsonValue() 86 fontJsonObject->Put("style", in ToJsonValue() 88 fontJsonObject->Put("family", V2::ConvertFontFamily(GetFontFamilyValue({})).c_str()); in ToJsonValue() 89 json->PutExtAttr("font", fontJsonObject, filter); in ToJsonValue()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/indexer/ |
H A D | indexer_layout_property.cpp | 83 auto fontJsonObject = JsonUtil::Create(true); in ToJsonObjectValue() local 84 fontJsonObject->Put("fontSize", textStyle.GetFontSize().ToString().c_str()); in ToJsonObjectValue() 85 fontJsonObject->Put( in ToJsonObjectValue() 87 …fontJsonObject->Put("fontWeight", V2::ConvertWrapFontWeightToStirng(textStyle.GetFontWeight()).c_s… in ToJsonObjectValue() 97 fontJsonObject->Put("fontFamily", fontFamily.c_str()); in ToJsonObjectValue() 98 return fontJsonObject; in ToJsonObjectValue()
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/menu/ |
H A D | menu_origin_test_ng.cpp | 713 auto fontJsonObject = json->GetObject("font"); variable 718 …EXPECT_EQ(fontJsonObject->GetString("weight"), V2::ConvertWrapFontWeightToStirng(FontWeight::BOLD)… 725 …EXPECT_EQ(fontJsonObject->GetString("weight"), V2::ConvertWrapFontWeightToStirng(FontWeight::BOLD)…
|