Home
last modified time | relevance | path

Searched refs:iconVal (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/src/bundle_resource/
H A Dbundle_resource_info.cpp34 std::u16string iconVal; in ReadFromParcel() local
35 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, iconVal); in ReadFromParcel()
36 icon = Str16ToStr8(iconVal); in ReadFromParcel()
H A Dlauncher_ability_resource_info.cpp43 std::u16string iconVal; in ReadFromParcel() local
44 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, iconVal); in ReadFromParcel()
45 icon = Str16ToStr8(iconVal); in ReadFromParcel()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dtab_content_model_impl.cpp186 const std::optional<std::string>& textVal, const std::optional<std::string>& iconVal) in ProcessTabBarTextIconPair() argument
188 if (!iconVal.has_value()) { in ProcessTabBarTextIconPair()
194 tabContent->SetBarIcon(iconVal.value()); in ProcessTabBarTextIconPair()
197 return TabBarItemComponent::BuildWithTextIcon(textStr, iconVal.value()); in ProcessTabBarTextIconPair()
H A Dtab_content_model_impl.h51 const std::optional<std::string>& textVal, const std::optional<std::string>& iconVal);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/action_sheet/
H A Djs_action_sheet.cpp86 auto iconVal = obj->GetProperty("icon"); in ParseSheetInfo() local
88 if (JSActionSheet::ParseJsMedia(iconVal, icon)) { in ParseSheetInfo()