Searched refs:DIALOG_ALIGNMENT (Results 1 - 9 of 9) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_alert_dialog_ffi.cpp | 24 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENTER, member 66 if (alignment >= 0 && alignment <= static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in ParseAlertDialogConfirm() 67 properties.alignment = DIALOG_ALIGNMENT[alignment]; in ParseAlertDialogConfirm()
|
H A D | cj_customdialog_controller_ffi.cpp | 27 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENTER, member 80 dialogProperties_.alignment = DIALOG_ALIGNMENT[options.alignment]; in NativeCustomDialogController()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/prompt/ |
H A D | cj_prompt_ffi.cpp | 28 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENTER, member 135 auto alignment = DIALOG_ALIGNMENT[options.alignment]; in FfiPromptOpenCustomDialog()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/action_sheet/ |
H A D | js_action_sheet.cpp | 57 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENTER, member 260 if (alignment >= 0 && alignment <= static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in ParseDialogAlignment() 261 properties.alignment = DIALOG_ALIGNMENT[alignment]; in ParseDialogAlignment()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/dialog/ |
H A D | js_custom_dialog_controller.cpp | 56 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENTER, member 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 D | js_alert_dialog.cpp | 54 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENTER, member 307 if (alignment >= 0 && alignment <= static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in ParseAlertAlignment() 308 properties.alignment = DIALOG_ALIGNMENT[alignment]; in ParseAlertAlignment()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_datepicker.cpp | 47 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENTER, member 1051 if (alignment >= 0 && alignment <= static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in UpdatePickerDialogPositionInfo() 1052 pickerDialog.alignment = DIALOG_ALIGNMENT[alignment]; in UpdatePickerDialogPositionInfo() 1739 if (alignment >= 0 && alignment <= static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in Show() 1740 pickerDialog.alignment = DIALOG_ALIGNMENT[alignment]; in Show()
|
H A D | js_textpicker.cpp | 43 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENTER, member 1437 if (alignment >= 0 && alignment <= static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in Show() 1438 textPickerDialog.alignment = DIALOG_ALIGNMENT[alignment]; in Show()
|
/foundation/arkui/ace_engine/interfaces/napi/kits/promptaction/ |
H A D | prompt_action.cpp | 34 const std::vector<DialogAlignment> DIALOG_ALIGNMENT = { DialogAlignment::TOP, DialogAlignment::CENTER, member 786 if (num >= 0 && num < static_cast<int32_t>(DIALOG_ALIGNMENT.size())) { in GetNapiDialogProps() 787 alignment = DIALOG_ALIGNMENT[num]; in GetNapiDialogProps()
|
Completed in 17 milliseconds