Home
last modified time | relevance | path

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

/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_calendar_picker.cpp111 auto buttonRoleIntValue = pickerButtonParamObject->GetProperty("role")->ToNumber<int32_t>(); in ParseButtonStyle() local
112 if (buttonRoleIntValue >= static_cast<int32_t>(ButtonRole::NORMAL) && in ParseButtonStyle()
113 buttonRoleIntValue <= static_cast<int32_t>(ButtonRole::ERROR)) { in ParseButtonStyle()
114 buttonInfo.role = static_cast<ButtonRole>(buttonRoleIntValue); in ParseButtonStyle()
H A Djs_button.cpp743 auto buttonRoleIntValue = optionObj->GetProperty(JSButton::ROLE)->ToNumber<int32_t>(); in ParseButtonRole() local
744 if (buttonRoleIntValue >= static_cast<int32_t>(ButtonRole::NORMAL) && in ParseButtonRole()
745 buttonRoleIntValue <= static_cast<int32_t>(ButtonRole::ERROR)) { in ParseButtonRole()
746 param.buttonRole = static_cast<ButtonRole>(buttonRoleIntValue); in ParseButtonRole()
H A Djs_datepicker.cpp231 auto buttonRoleIntValue = pickerButtonParamObject->GetProperty("role")->ToNumber<int32_t>(); in ParseButtonStyle() local
232 if (buttonRoleIntValue >= static_cast<int32_t>(ButtonRole::NORMAL) && in ParseButtonStyle()
233 buttonRoleIntValue <= static_cast<int32_t>(ButtonRole::ERROR)) { in ParseButtonStyle()
234 buttonInfo.role = static_cast<ButtonRole>(buttonRoleIntValue); in ParseButtonStyle()
H A Djs_textpicker.cpp151 auto buttonRoleIntValue = pickerButtonParamObject->GetProperty("role")->ToNumber<int32_t>(); in ParseButtonStyle() local
152 if (buttonRoleIntValue >= static_cast<int32_t>(ButtonRole::NORMAL) && in ParseButtonStyle()
153 buttonRoleIntValue <= static_cast<int32_t>(ButtonRole::ERROR)) { in ParseButtonStyle()
154 buttonInfo.role = static_cast<ButtonRole>(buttonRoleIntValue); in ParseButtonStyle()

Completed in 11 milliseconds