Home
last modified time | relevance | path

Searched refs:buttonValue (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/pages/subManualApiTest/
H A DBrInterfaceTest.ets296 * @param buttonValue Dialog buttonValue
298 function showDialog(dialogTitle: string | Resource , dialogMessage: string | Resource , buttonValue
303 value : buttonValue ,
/ohos5.0/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/pages/subManualApiTestManager/
H A DbrTestManager.ets292 * @param buttonValue Dialog buttonValue
294 function showDialog(dialogTitle: string | Resource , dialogMessage: string | Resource , buttonValue
299 value : buttonValue ,
/ohos5.0/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/pages/subManualApiTest/subSppTest/
H A DsppServerTest.ets355 * @param buttonValue Dialog buttonValue
357 function showDialog(dialogTitle: string | Resource , dialogMessage: string | Resource , buttonValue
362 value : buttonValue ,
H A DsppClientTest.ets381 * @param buttonValue Dialog buttonValue
383 function showDialog(dialogTitle: string | Resource , dialogMessage: string | Resource , buttonValue
388 value : buttonValue ,
/ohos5.0/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/pages/subManualApiTestManager/subSppTestManager/
H A DsppServerManager.ets353 * @param buttonValue Dialog buttonValue
355 function showDialog(dialogTitle: string | Resource , dialogMessage: string | Resource , buttonValue
360 value : buttonValue ,
H A DsppClientManager.ets384 * @param buttonValue Dialog buttonValue
386 function showDialog(dialogTitle: string | Resource , dialogMessage: string | Resource , buttonValue
391 value : buttonValue ,
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/action_sheet/
H A Djs_action_sheet.cpp140 std::string buttonValue; in ParseConfirmButton() local
141 if (JSActionSheet::ParseJsString(confirmObj->GetProperty("value"), buttonValue)) { in ParseConfirmButton()
142 ButtonInfo buttonInfo = { .text = buttonValue }; in ParseConfirmButton()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/dialog/
H A Djs_alert_dialog.cpp78 std::string buttonValue; in ParseButtonObj() local
80 if (JSAlertDialog::ParseJsString(objInner->GetProperty("value"), buttonValue)) { in ParseButtonObj()
81 buttonInfo.text = buttonValue; in ParseButtonObj()
/ohos5.0/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/pages/subManualApiTest/subBrTest/
H A DdeviceFound.ets773 * @param buttonValue Dialog buttonValue
775 function showDialog(dialogTitle: string | Resource , dialogMessage: string | Resource , buttonValue
780 value : buttonValue ,
/ohos5.0/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/pages/subManualApiTestManager/subBrTestManager/
H A DdeviceFound.ets763 * @param buttonValue Dialog buttonValue
765 function showDialog(dialogTitle: string | Resource , dialogMessage: string | Resource , buttonValue
770 value : buttonValue ,
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_search.cpp279 std::string buttonValue = ""; in SetSearchButton() local
281 buttonValue = info[0]->ToString(); in SetSearchButton()
283 SearchModel::GetInstance()->SetSearchButton(buttonValue); in SetSearchButton()