Home
last modified time | relevance | path

Searched refs:DIALOG_ALIGNMENT (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_alert_dialog_ffi.cpp25 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENT… variable
67 if (alignment >= 0 && alignment <= static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in ParseAlertDialogConfirm()
68 properties.alignment = DIALOG_ALIGNMENT[alignment]; in ParseAlertDialogConfirm()
H A Dcj_customdialog_controller_ffi.cpp32 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENT… variable
85 dialogProperties_.alignment = DIALOG_ALIGNMENT[options.alignment]; in NativeCustomDialogController()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/prompt/
H A Dcj_prompt_ffi.cpp30 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENT… variable
137 auto alignment = DIALOG_ALIGNMENT[options.alignment]; in FfiPromptOpenCustomDialog()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/dialog/
H A Djs_custom_dialog_controller.cpp56 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENT… variable
134 if (alignment >= 0 && alignment <= static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in ConstructorCallback()
135 instance->dialogProperties_.alignment = DIALOG_ALIGNMENT[alignment]; in ConstructorCallback()
H A Djs_alert_dialog.cpp54 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENT… variable
325 if (alignment >= 0 && alignment <= static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in ParseAlertAlignment()
326 properties.alignment = DIALOG_ALIGNMENT[alignment]; in ParseAlertAlignment()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/action_sheet/
H A Djs_action_sheet.cpp57 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENT… variable
260 if (alignment >= 0 && alignment <= static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in ParseDialogAlignment()
261 properties.alignment = DIALOG_ALIGNMENT[alignment]; in ParseDialogAlignment()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_datepicker.cpp47 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENT… variable
1045 if (alignment >= 0 && alignment < static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in UpdatePickerDialogPositionInfo()
1046 pickerDialog.alignment = DIALOG_ALIGNMENT[alignment]; in UpdatePickerDialogPositionInfo()
1733 if (alignment >= 0 && alignment < static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in Show()
1734 pickerDialog.alignment = DIALOG_ALIGNMENT[alignment]; in Show()
H A Djs_textpicker.cpp43 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENT… variable
1479 if (alignment >= 0 && alignment < static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in Show()
1480 textPickerDialog.alignment = DIALOG_ALIGNMENT[alignment]; in Show()
/ohos5.0/foundation/arkui/ace_engine/interfaces/napi/kits/promptaction/
H A Dprompt_action.cpp41 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENT… variable
698 if (num >= 0 && num < static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in GetNapiDialogProps()
699 alignment = DIALOG_ALIGNMENT[num]; in GetNapiDialogProps()