Home
last modified time | relevance | path

Searched refs:defaultFontWeight (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_symbol_span_modifier.cpp28 FontWeight ConvertStrToFontWeight(ArkUI_CharPtr weight, FontWeight defaultFontWeight = FontWeight::… in ConvertStrToFontWeight() argument
31 return StringUtils::StringToFontWeight(weightStr, defaultFontWeight); in ConvertStrToFontWeight()
H A Dnode_symbol_glyph_modifier.cpp30 FontWeight ConvertStrToFontWeight(ArkUI_CharPtr weight, FontWeight defaultFontWeight = FontWeight::… in ConvertStrToFontWeight() argument
33 return StringUtils::StringToFontWeight(weightStr, defaultFontWeight); in ConvertStrToFontWeight()
H A Dtext_modifier.cpp50 FontWeight ConvertStrToFontWeight(const char* weight, FontWeight defaultFontWeight = FontWeight::NO… in ConvertStrToFontWeight() argument
53 return StringUtils::StringToFontWeight(weightStr, defaultFontWeight); in ConvertStrToFontWeight()
H A Dnode_span_modifier.cpp105 int32_t defaultFontWeight = static_cast<int32_t>(DEFAULT_FONT_WEIGHT); in GetSpanFontWeight() local
107 CHECK_NULL_RETURN(uiNode, defaultFontWeight); in GetSpanFontWeight()
H A Dnode_text_modifier.cpp77 FontWeight ConvertStrToFontWeight(ArkUI_CharPtr weight, FontWeight defaultFontWeight = FontWeight::… in ConvertStrToFontWeight() argument
80 return StringUtils::StringToFontWeight(weightStr, defaultFontWeight); in ConvertStrToFontWeight()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/indexer/
H A Dindexer_layout_property.cpp70 auto defaultFontWeight = indexerTheme->GetPopupTextStyle().GetFontWeight(); in ToJsonValue() local
73 … V2::ConvertWrapFontWeightToStirng(propFontWeight_.value_or(defaultFontWeight)).c_str(), filter); in ToJsonValue()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A Dtext_style.h827 FontWeight defaultFontWeight = FontWeight::NORMAL)
848 : std::make_pair(false, defaultFontWeight);
851 inline FontWeight StringToFontWeight(const std::string& weight, FontWeight defaultFontWeight = Font…
853 return ParseFontWeight(weight, defaultFontWeight).second;
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/utils/
H A Dutils.h217 FontWeight defaultFontWeight = FontWeight::NORMAL)
219 return StringUtils::ParseFontWeight(weight, defaultFontWeight);
222 inline FontWeight ConvertStrToFontWeight(const std::string& weight, FontWeight defaultFontWeight = …
224 return StringUtils::StringToFontWeight(weight, defaultFontWeight);