/ohos5.0/build/hb/services/ |
H A D | menu.py | 55 choice if isinstance(choice, Separator) else { 56 'name': choice, 331 for index, choice in enumerate(choices): 332 if isinstance(choice, Separator): 337 self.choices.append((choice, choice, None)) 339 name = choice.get('name') 351 def append(index: int, choice: list): 364 if choice[2]: # disabled 366 '- %s (%s)' % (choice[0], choice[2]))) 370 str(choice[0]), [all …]
|
/ohos5.0/drivers/hdf_core/adapter/khdf/linux/model/audio/ |
H A D | Kconfig | 6 Answer Y to choice HDF Audio driver. 13 Answer Y to choice HDF Audio HDMI driver. 20 Answer Y to choice HDF Audio USB driver. 27 Answer Y to choice HDF Audio Codec driver. 34 Answer Y to choice HDF Audio Codec driver. 41 Answer Y to choice HDF Audio Codec driver. 57 Answer Y to choice HDF Audio Codec driver For RK3588. 73 Answer Y to choice capture event report. 80 Answer Y to choice HDF Audio driver Test. 87 Answer Y to choice HDF Audio Codec driver. [all …]
|
/ohos5.0/base/telephony/ril_adapter/test/unittest/ |
H A D | ril_interface_test.cpp | 197 int32_t choice; in InputInt32() local 209 } while (cin.fail() || choice < start || choice > end); in InputInt32() 211 return choice; in InputInt32() 1554 return choice; in PrintMenu() 1568 choice = (choice == HREQ_CALL_BASE) ? DEFAULT_CHOICE : choice; in PrintStressMenu() 1601 choice = (choice == HREQ_CALL_BASE) ? DEFAULT_CHOICE : choice; in PrintCallMenu() 1617 choice = (choice == HREQ_SMS_BASE) ? DEFAULT_CHOICE : choice; in PrintSmsMenu() 1653 choice = (choice == HREQ_SIM_BASE) ? DEFAULT_CHOICE : choice; in PrintSimMenu() 1678 choice = (choice == HREQ_DATA_BASE) ? DEFAULT_CHOICE : choice; in PrintDataMenu() 1715 choice = (choice == HREQ_NETWORK_BASE) ? DEFAULT_CHOICE : choice; in PrintNetworkMenu() [all …]
|
/ohos5.0/drivers/peripheral/audio/test/sample/ |
H A D | idl_render.c | 417 int choice = 0; in SelectPlayMode() local 430 *palyModeFlag = choice; in SelectPlayMode() 569 int choice = 0; in SelectLoadingMode() local 582 switch (choice) { in SelectLoadingMode() 1224 static void ProcessMenu(int32_t choice) in ProcessMenu() argument 1230 if (g_render == NULL && choice != 1) { in ProcessMenu() 1246 int32_t choice = 0; in Choice() local 1248 while (choice < GET_RENDER_POSITION + 1 && choice >= 0) { in Choice() 1258 if (choice < RENDER_START || choice > GET_RENDER_POSITION + 1) { in Choice() 1260 choice = 0; in Choice() [all …]
|
H A D | idl_capture.c | 398 int choice = 0; in SelectRecordMode() local 411 *recordModeFlag = choice; in SelectRecordMode() 620 int choice = 0; in SelectLoadingMode() local 629 switch (choice) { in SelectLoadingMode() 648 int choice = 0; in SelectAudioInputType() local 659 if ((choice >= 0) && (choice <= 7)) { // 7. the max value of audio input type in SelectAudioInputType() 660 g_voiceCallType = 1 << choice; in SelectAudioInputType() 1231 static void ProcessMenu(int32_t choice) in ProcessMenu() argument 1237 if (g_capture == NULL && choice != 1) { in ProcessMenu() 1261 int choice = 0; in Choice0() local [all …]
|
/ohos5.0/foundation/multimedia/player_framework/services/services/screen_capture/ipc/ |
H A D | screen_capture_controller_stub.cpp | 106 …ScreenCaptureControllerStub::ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) in ReportAVScreenCaptureUserChoice() argument 118 return screenCaptureControllerServer_->ReportAVScreenCaptureUserChoice(sessionId, choice); in ReportAVScreenCaptureUserChoice() 128 std::string choice = data.ReadString(); in ReportAVScreenCaptureUserChoice() local 129 int32_t ret = ReportAVScreenCaptureUserChoice(sessionId, choice); in ReportAVScreenCaptureUserChoice()
|
H A D | screen_capture_controller_proxy.cpp | 55 …creenCaptureControllerProxy::ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) in ReportAVScreenCaptureUserChoice() argument 68 token = data.WriteString(choice); in ReportAVScreenCaptureUserChoice()
|
H A D | i_standard_screen_capture_controller.h | 33 virtual int32_t ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) = 0;
|
H A D | screen_capture_controller_proxy.h | 28 int32_t ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) override;
|
H A D | screen_capture_controller_stub.h | 31 int32_t ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) override;
|
/ohos5.0/foundation/multimedia/player_framework/services/services/screen_capture/server/ |
H A D | screen_capture_controller_server.cpp | 52 …reenCaptureControllerServer::ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) in ReportAVScreenCaptureUserChoice() argument 55 int32_t ret = ScreenCaptureServer::ReportAVScreenCaptureUserChoice(sessionId, choice); in ReportAVScreenCaptureUserChoice()
|
H A D | screen_capture_controller_server.h | 36 int32_t ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) override;
|
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/screen_capture/ |
H A D | screen_capture_controller_impl.cpp | 34 …ScreenCaptureControllerImpl::ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) in ReportAVScreenCaptureUserChoice() argument 40 int32_t ret = controllerClient->ReportAVScreenCaptureUserChoice(sessionId, choice); in ReportAVScreenCaptureUserChoice()
|
H A D | screen_capture_controller_impl.h | 26 void ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) override;
|
/ohos5.0/foundation/multimedia/player_framework/services/services/screen_capture/client/ |
H A D | screen_capture_controller_client.cpp | 60 …reenCaptureControllerClient::ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) in ReportAVScreenCaptureUserChoice() argument 65 return screenCaptureControllerProxy_->ReportAVScreenCaptureUserChoice(sessionId, choice); in ReportAVScreenCaptureUserChoice()
|
H A D | screen_capture_controller_client.h | 33 int32_t ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) override;
|
/ohos5.0/build/hb/util/ |
H A D | log_util.py | 106 for choice in choices: 107 pattern = re.compile(choice, re.DOTALL) 114 best_match = choice
|
/ohos5.0/docs/en/design/ux-design/ |
H A D | app-page-structure-design.md | 10 … of the application's home page. In this case, the launch page is a good choice when users are wai… 44 **Multi-choice Page** 46 A multi-choice page enables users to select multiple data items and process them in batches. It is … 48 …tecture-common-page-structure-multi-choice-page](figures/application-architecture-common-page-stru…
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-js/ |
H A D | js-components-basic-toggle.md | 62 <text class="margin">1. Multiple choice example</text> 66 <text class="margin">2. Single choice example</text>
|
/ohos5.0/drivers/hdf_core/adapter/khdf/liteos/model/usb/host/ |
H A D | Kconfig | 34 Answer Y to choice HDF LiteOS USB DDK HOST driver. 41 Answer Y to choice HDF LiteOS USB PNP Notify driver.
|
/ohos5.0/foundation/multimedia/player_framework/services/include/ |
H A D | i_screen_capture_controller.h | 26 virtual int32_t ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) = 0;
|
/ohos5.0/foundation/multimedia/player_framework/test/unittest/screen_capture_test/screen_capture_server_function_unittest/src/ |
H A D | screen_capture_server_function_unittest.cpp | 693 std::string choice = "{\"choice\": \"false\", \"displayId\": -1, \"missionId\": -1}"; variable 694 ASSERT_NE(screenCaptureServer_->ReportAVScreenCaptureUserChoice(sessionId, choice), MSERR_OK); 708 std::string choice = "{\"choice\": \"true\", \"displayId\": -1, \"missionId\": -1}"; variable 709 ASSERT_NE(screenCaptureServer_->ReportAVScreenCaptureUserChoice(sessionId, choice), MSERR_OK); 723 std::string choice = "{\"choice\": \"true\", \"displayId\": -1, \"missionId\": -1}"; variable 724 ASSERT_NE(screenCaptureServer_->ReportAVScreenCaptureUserChoice(sessionId, choice), MSERR_OK); 738 std::string choice = "{\"choice\": \"12345\", \"displayId\": -1, \"missionId\": -1}"; variable 739 ASSERT_NE(screenCaptureServer_->ReportAVScreenCaptureUserChoice(sessionId, choice), MSERR_OK);
|
/ohos5.0/foundation/multimedia/player_framework/interfaces/inner_api/native/ |
H A D | screen_capture_controller.h | 28 virtual void ReportAVScreenCaptureUserChoice(int32_t sessionId, std::string choice) = 0;
|
/ohos5.0/drivers/hdf_core/adapter/khdf/linux/model/display/ |
H A D | Kconfig | 6 Answer Y to choice HDF Display driver.
|
/ohos5.0/drivers/hdf_core/adapter/khdf/linux/model/usb/host/ |
H A D | Kconfig | 17 Answer Y to choice HDF USB PNP Notify driver.
|