Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/dialog/
H A Djs_custom_dialog_controller.cpp216 auto showInSubWindowValue = constructorArg->GetProperty("showInSubWindow"); in ConstructorCallback() local
217 if (showInSubWindowValue->IsBoolean()) { in ConstructorCallback()
222 instance->dialogProperties_.isShowInSubWindow = showInSubWindowValue->ToBoolean(); in ConstructorCallback()
H A Djs_alert_dialog.cpp445 auto showInSubWindowValue = obj->GetProperty("showInSubWindow"); in Show() local
446 if (showInSubWindowValue->IsBoolean()) { in Show()
451 properties.isShowInSubWindow = showInSubWindowValue->ToBoolean(); in Show()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/action_sheet/
H A Djs_action_sheet.cpp409 auto showInSubWindowValue = obj->GetProperty("showInSubWindow"); in Show() local
410 if (showInSubWindowValue->IsBoolean()) { in Show()
415 properties.isShowInSubWindow = showInSubWindowValue->ToBoolean(); in Show()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_view_abstract.cpp922 JSRef<JSVal> showInSubWindowValue = popupObj->GetProperty("showInSubWindow"); in ParsePopupCommonParam() local
923 if (showInSubWindowValue->IsBoolean()) { in ParsePopupCommonParam()
924 bool showInSubBoolean = showInSubWindowValue->ToBoolean(); in ParsePopupCommonParam()
3517 JSRef<JSVal> showInSubWindowValue = menuOptions->GetProperty("showInSubWindow"); in ParseMenuParam() local
3520 if (showInSubWindowValue->IsBoolean()) { in ParseMenuParam()
3521 menuParam.isShowInSubWindow = showInSubWindowValue->ToBoolean(); in ParseMenuParam()