Home
last modified time | relevance | path

Searched refs:themeValue (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/global/resource_management/frameworks/resmgr/src/
H A Dtheme_pack_resource.cpp130 auto themeValue = std::make_shared<ThemeValue>(); in InitThemeRes() local
134 themeValue->AddThemeLimitPath(themeQualifierValue); in InitThemeRes()
135 themeValueVec_.emplace_back(std::make_tuple(resType, name->valuestring, themeValue)); in InitThemeRes()
197 auto themeValue = std::make_shared<ThemeValue>(); in ParseIcon() local
200 themeValue->AddThemeLimitPath(themeQualifierValue); in ParseIcon()
201 themeValueVec_.emplace_back(std::make_tuple(ResType::MEDIA, iconName, themeValue)); in ParseIcon()
213 for (const auto &themeValue : themeValueVec_) { in GetThemeValues() local
214 ResType type = std::get<FIRST_ELEMENT>(themeValue); in GetThemeValues()
215 std::string resName = std::get<SECOND_ELEMENT>(themeValue); in GetThemeValues()
217 result.emplace_back(std::get<THIRED_ELEMENT>(themeValue)); in GetThemeValues()
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/utils/
H A Dstring_utils.h367 … StringToDimensionWithThemeValue(const std::string& value, bool useVp, const Dimension& themeValue) in StringToDimensionWithThemeValue() argument
373 return themeValue; in StringToDimensionWithThemeValue()