Home
last modified time | relevance | path

Searched refs:buttonRoleIntValue (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_button.cpp699 auto buttonRoleIntValue = optionObj->GetProperty(JSButton::ROLE)->ToNumber<int32_t>(); in ParseButtonRole() local
700 if (buttonRoleIntValue >= static_cast<int32_t>(ButtonRole::NORMAL) && in ParseButtonRole()
701 buttonRoleIntValue <= static_cast<int32_t>(ButtonRole::ERROR)) { in ParseButtonRole()
702 param.buttonRole = static_cast<ButtonRole>(buttonRoleIntValue); in ParseButtonRole()
H A Djs_calendar_picker.cpp105 auto buttonRoleIntValue = pickerButtonParamObject->GetProperty("role")->ToNumber<int32_t>(); in ParseButtonStyle() local
106 if (buttonRoleIntValue >= static_cast<int32_t>(ButtonRole::NORMAL) && in ParseButtonStyle()
107 buttonRoleIntValue <= static_cast<int32_t>(ButtonRole::ERROR)) { in ParseButtonStyle()
108 buttonInfo.role = static_cast<ButtonRole>(buttonRoleIntValue); in ParseButtonStyle()
H A Djs_datepicker.cpp225 auto buttonRoleIntValue = pickerButtonParamObject->GetProperty("role")->ToNumber<int32_t>(); in ParseButtonStyle() local
226 if (buttonRoleIntValue >= static_cast<int32_t>(ButtonRole::NORMAL) && in ParseButtonStyle()
227 buttonRoleIntValue <= static_cast<int32_t>(ButtonRole::ERROR)) { in ParseButtonStyle()
228 buttonInfo.role = static_cast<ButtonRole>(buttonRoleIntValue); in ParseButtonStyle()
H A Djs_textpicker.cpp145 auto buttonRoleIntValue = pickerButtonParamObject->GetProperty("role")->ToNumber<int32_t>(); in ParseButtonStyle() local
146 if (buttonRoleIntValue >= static_cast<int32_t>(ButtonRole::NORMAL) && in ParseButtonStyle()
147 buttonRoleIntValue <= static_cast<int32_t>(ButtonRole::ERROR)) { in ParseButtonStyle()
148 buttonInfo.role = static_cast<ButtonRole>(buttonRoleIntValue); in ParseButtonStyle()