/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/src/ |
H A D | ge_visual_effect.cpp | 31 void GEVisualEffect::SetParam(const std::string& tag, int32_t param) in SetParam() function in OHOS::Rosen::Drawing::GEVisualEffect 34 visualEffectImpl_->SetParam(tag, param); in SetParam() 37 void GEVisualEffect::SetParam(const std::string& tag, int64_t param) in SetParam() function in OHOS::Rosen::Drawing::GEVisualEffect 39 visualEffectImpl_->SetParam(tag, param); in SetParam() 42 void GEVisualEffect::SetParam(const std::string& tag, float param) in SetParam() function in OHOS::Rosen::Drawing::GEVisualEffect 44 visualEffectImpl_->SetParam(tag, param); in SetParam() 47 void GEVisualEffect::SetParam(const std::string& tag, double param) in SetParam() function in OHOS::Rosen::Drawing::GEVisualEffect 49 visualEffectImpl_->SetParam(tag, param); in SetParam() 52 void GEVisualEffect::SetParam(const std::string& tag, const char* const param) in SetParam() function in OHOS::Rosen::Drawing::GEVisualEffect 54 visualEffectImpl_->SetParam(ta in SetParam() 57 void GEVisualEffect::SetParam(const std::string& tag, const Drawing::Matrix param) SetParam() function in OHOS::Rosen::Drawing::GEVisualEffect 62 void GEVisualEffect::SetParam(const std::string& tag, const std::vector<std::pair<float, float>> param) SetParam() function in OHOS::Rosen::Drawing::GEVisualEffect 67 void GEVisualEffect::SetParam(const std::string& tag, bool param) SetParam() function in OHOS::Rosen::Drawing::GEVisualEffect 72 void GEVisualEffect::SetParam(const std::string& tag, uint32_t param) SetParam() function in OHOS::Rosen::Drawing::GEVisualEffect [all...] |
/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/test/unittest/ |
H A D | ge_visual_effect_impl_test.cpp | 71 * @tc.desc: Verify function SetParam 80 geVisualEffectImpl1.SetParam(Drawing::GE_FILTER_KAWASE_BLUR_RADIUS, paramInt32); in HWTEST_F() 85 geVisualEffectImpl2.SetParam(Drawing::GE_FILTER_LINEAR_GRADIENT_BLUR_DIRECTION, paramInt32); in HWTEST_F() 89 geVisualEffectImpl2.SetParam(Drawing::GE_FILTER_LINEAR_GRADIENT_BLUR_IS_OFF_SCREEN, true); in HWTEST_F() 94 geVisualEffectImpl2.SetParam(Drawing::GE_FILTER_LINEAR_GRADIENT_BLUR_RADIUS, paramfloat); in HWTEST_F() 95 geVisualEffectImpl2.SetParam(Drawing::GE_FILTER_LINEAR_GRADIENT_BLUR_GEO_WIDTH, paramfloat); in HWTEST_F() 96 geVisualEffectImpl2.SetParam(Drawing::GE_FILTER_LINEAR_GRADIENT_BLUR_GEO_HEIGHT, paramfloat); in HWTEST_F() 97 geVisualEffectImpl2.SetParam(Drawing::GE_FILTER_LINEAR_GRADIENT_BLUR_TRAN_X, paramfloat); in HWTEST_F() 98 geVisualEffectImpl2.SetParam(Drawing::GE_FILTER_LINEAR_GRADIENT_BLUR_TRAN_Y, paramfloat); in HWTEST_F() 109 geVisualEffectImpl1.SetParam(Drawin in HWTEST_F() [all...] |
H A D | ge_render_test.cpp | 146 visualEffect->SetParam(Drawing::GE_FILTER_KAWASE_BLUR_RADIUS, 1); in HWTEST_F() 175 visualEffect->SetParam(Drawing::GE_FILTER_KAWASE_BLUR_RADIUS, 0); in HWTEST_F() 208 visualEffect->SetParam(Drawing::GE_FILTER_KAWASE_BLUR_RADIUS, 1); in HWTEST_F() 241 visualEffect->SetParam(Drawing::GE_FILTER_KAWASE_BLUR_RADIUS, 1); in HWTEST_F() 271 visualEffect->SetParam(Drawing::GE_FILTER_AI_BAR_LOW, 1.0f); // 1.0 AI bar blur low in HWTEST_F() 272 visualEffect->SetParam(Drawing::GE_FILTER_AI_BAR_HIGH, 1.0f); // 1.0 AI bar blur high in HWTEST_F() 273 visualEffect->SetParam(Drawing::GE_FILTER_AI_BAR_THRESHOLD, 1.0f); // 1.0 AI bar blur threshold in HWTEST_F() 274 visualEffect->SetParam(Drawing::GE_FILTER_AI_BAR_OPACITY, 1.0f); // 1.0 AI bar blur opacity in HWTEST_F() 275 visualEffect->SetParam(Drawing::GE_FILTER_AI_BAR_SATURATION, 1.0f); // 1.0 AI bar blur saturation in HWTEST_F() 295 visualEffect->SetParam(Drawin in HWTEST_F() [all...] |
/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/include/ |
H A D | ge_visual_effect.h | 39 void SetParam(const std::string& tag, int32_t param);
40 void SetParam(const std::string& tag, int64_t param);
41 void SetParam(const std::string& tag, float param);
42 void SetParam(const std::string& tag, double param);
43 void SetParam(const std::string& tag, const char* const param);
45 void SetParam(const std::string& tag, const std::shared_ptr<Drawing::Image> param) {}
in SetParam() function in OHOS::Rosen::Drawing::GEVisualEffect 46 void SetParam(const std::string& tag, const std::shared_ptr<Drawing::ColorFilter> param) {}
in SetParam() function in OHOS::Rosen::Drawing::GEVisualEffect 47 void SetParam(const std::string& tag, const Drawing::Matrix param);
48 void SetParam(const std::string& tag, const std::vector<std::pair<float, float>>);
49 void SetParam(cons [all...] |
H A D | ge_visual_effect_impl.h | 48 void SetParam(const std::string& tag, int32_t param);
49 void SetParam(const std::string& tag, int64_t param);
50 void SetParam(const std::string& tag, float param);
51 void SetParam(const std::string& tag, double param);
52 void SetParam(const std::string& tag, const char* const param);
54 void SetParam(const std::string& tag, const std::shared_ptr<Drawing::Image> param);
55 void SetParam(const std::string& tag, const std::shared_ptr<Drawing::ColorFilter> param);
56 void SetParam(const std::string& tag, const Drawing::Matrix param);
57 void SetParam(const std::string& tag, const std::vector<std::pair<float, float>>);
58 void SetParam(cons [all...] |
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/ |
H A D | rs_mesa_blur_shader_filter.cpp | 98 mesaFilter->SetParam("MESA_BLUR_RADIUS", (int)radius_); // blur radius in GenerateGEVisualEffect() 99 mesaFilter->SetParam("MESA_BLUR_GREY_COEF_1", greyCoefLow_); in GenerateGEVisualEffect() 100 mesaFilter->SetParam("MESA_BLUR_GREY_COEF_2", greyCoefHigh_); in GenerateGEVisualEffect() 102 mesaFilter->SetParam("OFFSET_X", localParams->offsetX_); in GenerateGEVisualEffect() 103 mesaFilter->SetParam("OFFSET_Y", localParams->offsetY_); in GenerateGEVisualEffect() 104 mesaFilter->SetParam("OFFSET_Z", localParams->offsetZ_); in GenerateGEVisualEffect() 105 mesaFilter->SetParam("OFFSET_W", localParams->offsetW_); in GenerateGEVisualEffect() 106 mesaFilter->SetParam("TILE_MODE", localParams->tileMode_); in GenerateGEVisualEffect() 107 mesaFilter->SetParam("WIDTH", localParams->width_); in GenerateGEVisualEffect() 108 mesaFilter->SetParam("HEIGH in GenerateGEVisualEffect() [all...] |
H A D | rs_linear_gradient_blur_shader_filter.cpp | 41 gelinearGradientBlurFilter->SetParam("BLURRADIUS", linearGradientBlurPara_->blurRadius_); in GenerateGEVisualEffect() 42 gelinearGradientBlurFilter->SetParam("GEOWIDTH", geoWidth_); in GenerateGEVisualEffect() 43 gelinearGradientBlurFilter->SetParam("GEOHEIGHT", geoHeight_); in GenerateGEVisualEffect() 44 gelinearGradientBlurFilter->SetParam("TRANX", tranX_); in GenerateGEVisualEffect() 45 gelinearGradientBlurFilter->SetParam("TRANY", tranY_); in GenerateGEVisualEffect() 46 gelinearGradientBlurFilter->SetParam("CANVASMAT", mat_); in GenerateGEVisualEffect() 47 gelinearGradientBlurFilter->SetParam("FRACTIONSTOPS", linearGradientBlurPara_->fractionStops_); in GenerateGEVisualEffect() 48 gelinearGradientBlurFilter->SetParam("DIRECTION", (int)linearGradientBlurPara_->direction_); in GenerateGEVisualEffect() 49 gelinearGradientBlurFilter->SetParam("ISOFFSCREEN", isOffscreenCanvas_); in GenerateGEVisualEffect()
|
H A D | rs_magnifier_shader_filter.cpp | 48 magnifierFilter->SetParam("FACTOR", magnifierPara_->factor_); in GenerateGEVisualEffect() 49 magnifierFilter->SetParam("WIDTH", magnifierPara_->width_ * scaleX_); in GenerateGEVisualEffect() 50 magnifierFilter->SetParam("HEIGHT", magnifierPara_->height_ * scaleY_); in GenerateGEVisualEffect() 51 magnifierFilter->SetParam("CORNERRADIUS", magnifierPara_->cornerRadius_ * scaleY_); in GenerateGEVisualEffect() 52 magnifierFilter->SetParam("BORDERWIDTH", magnifierPara_->borderWidth_ * scaleY_); in GenerateGEVisualEffect() 53 magnifierFilter->SetParam("SHADOWOFFSETX", magnifierPara_->shadowOffsetX_ * scaleX_); in GenerateGEVisualEffect() 54 magnifierFilter->SetParam("SHADOWOFFSETY", magnifierPara_->shadowOffsetY_ * scaleY_); in GenerateGEVisualEffect() 55 magnifierFilter->SetParam("SHADOWSIZE", magnifierPara_->shadowSize_ * scaleY_); in GenerateGEVisualEffect() 56 magnifierFilter->SetParam("SHADOWSTRENGTH", magnifierPara_->shadowStrength_); in GenerateGEVisualEffect() 57 magnifierFilter->SetParam("GRADIENTMASKCOLOR in GenerateGEVisualEffect() [all...] |
H A D | rs_water_ripple_shader_filter.cpp | 76 waterRippleFilter->SetParam(RS_FILTER_WATER_RIPPLE_PROGRESS, progress_); in GenerateGEVisualEffect() 77 waterRippleFilter->SetParam(RS_FILTER_WATER_RIPPLE_WAVE_NUM, waveCount_); in GenerateGEVisualEffect() 78 waterRippleFilter->SetParam(RS_FILTER_WATER_RIPPLE_RIPPLE_CENTER_X, rippleCenterX_); in GenerateGEVisualEffect() 79 waterRippleFilter->SetParam(RS_FILTER_WATER_RIPPLE_RIPPLE_CENTER_Y, rippleCenterY_); in GenerateGEVisualEffect() 80 waterRippleFilter->SetParam(RS_FILTER_WATER_RIPPLE_RIPPLE_MODE, rippleMode_); in GenerateGEVisualEffect()
|
H A D | rs_aibar_shader_filter.cpp | 48 aiBarFilter->SetParam("AIBAR_LOW", aiBarPara[0]); // aiBarPara[0] is low in GenerateGEVisualEffect() 49 aiBarFilter->SetParam("AIBAR_HIGH", aiBarPara[1]); // aiBarPara[1] is high in GenerateGEVisualEffect() 50 aiBarFilter->SetParam("AIBAR_THRESHOLD", aiBarPara[2]); // aiBarPara[2] is threshold in GenerateGEVisualEffect() 51 aiBarFilter->SetParam("AIBAR_OPACITY", aiBarPara[3]); // aiBarPara[3] is opacity in GenerateGEVisualEffect() 52 aiBarFilter->SetParam("AIBAR_SATURATION", aiBarPara[4]); // aiBarPara[4] is saturation in GenerateGEVisualEffect()
|
/foundation/ability/ability_runtime/services/abilitymgr/src/utils/ |
H A D | update_caller_info_util.cpp | 63 want.SetParam(Want::PARAM_RESV_CALLER_TOKEN, tokenId); in UpdateCallerInfo() 65 want.SetParam(Want::PARAM_RESV_CALLER_UID, callerUid); in UpdateCallerInfo() 67 want.SetParam(Want::PARAM_RESV_CALLER_PID, callerPid); in UpdateCallerInfo() 85 want.SetParam(Want::PARAM_RESV_CALLER_NATIVE_NAME, nativeName); in UpdateCallerInfo() 88 want.SetParam(Want::PARAM_RESV_CALLER_BUNDLE_NAME, bundleName); in UpdateCallerInfo() 90 want.SetParam(Want::PARAM_RESV_CALLER_ABILITY_NAME, std::string("")); in UpdateCallerInfo() 95 want.SetParam(Want::PARAM_RESV_CALLER_BUNDLE_NAME, callerBundleName); in UpdateCallerInfo() 98 want.SetParam(Want::PARAM_RESV_CALLER_ABILITY_NAME, callerAbilityName); in UpdateCallerInfo() 111 want.SetParam(callerAppId, signatureInfo.appId); in UpdateSignatureInfo() 113 want.SetParam(callerAppIdentifie in UpdateSignatureInfo() [all...] |
/foundation/ability/ability_runtime/test/unittest/insight_intent/insight_intent_execute_param_test/ |
H A D | insight_intent_execute_param_test.cpp | 70 wantParams.SetParam(AppExecFwk::INSIGHT_INTENT_EXECUTE_PARAM_NAME, AAFwk::String::Box(TEST_INSIGHT_INTENT_NANE)); in HWTEST_F() 71 wantParams.SetParam(AppExecFwk::INSIGHT_INTENT_EXECUTE_PARAM_ID, AAFwk::String::Box("1")); in HWTEST_F() 72 wantParams.SetParam(Want::PARAM_RESV_CALLER_TOKEN, Integer::Box(1000)); in HWTEST_F() 73 wantParams.SetParam(Want::PARAM_RESV_CALLER_UID, Integer::Box(1001)); in HWTEST_F() 74 wantParams.SetParam(Want::PARAM_RESV_CALLER_PID, Integer::Box(1002)); in HWTEST_F() 75 wantParams.SetParam(Want::PARAM_RESV_CALLER_BUNDLE_NAME, AAFwk::String::Box(TEST_CALLER_BUNDLE_NANE)); in HWTEST_F() 78 insightIntentParam.SetParam("dummy", Integer::Box(-1)); in HWTEST_F() 79 wantParams.SetParam(AppExecFwk::INSIGHT_INTENT_EXECUTE_PARAM_PARAM, WantParamWrapper::Box(insightIntentParam)); in HWTEST_F() 117 wantParams.SetParam(Want::PARAM_RESV_CALLER_TOKEN, Integer::Box(1000)); in HWTEST_F() 118 wantParams.SetParam(Wan in HWTEST_F() [all...] |
/foundation/communication/nfc/services/src/external_deps/ |
H A D | tag_ability_dispatcher.cpp | 42 want.SetParam("uid", tagInfo->GetTagUid()); in SetWantExtraParam() 43 want.SetParam("technology", tagInfo->GetTagTechList()); in SetWantExtraParam() 44 want.SetParam("tagRfDiscId", tagInfo->GetTagRfDiscId()); in SetWantExtraParam() 50 want.SetParam(KITS::TagInfo::SAK, extra.GetIntValue(KITS::TagInfo::SAK, 0)); in SetWantExtraParam() 51 want.SetParam(KITS::TagInfo::ATQA, extra.GetStringValue(KITS::TagInfo::ATQA, "")); in SetWantExtraParam() 53 want.SetParam(KITS::TagInfo::APP_DATA, extra.GetStringValue(KITS::TagInfo::APP_DATA, "")); in SetWantExtraParam() 54 want.SetParam(KITS::TagInfo::PROTOCOL_INFO, extra.GetStringValue(KITS::TagInfo::PROTOCOL_INFO, "")); in SetWantExtraParam() 56 want.SetParam(KITS::TagInfo::NFCF_SC, extra.GetStringValue(KITS::TagInfo::NFCF_SC, "")); in SetWantExtraParam() 57 want.SetParam(KITS::TagInfo::NFCF_PMM, extra.GetStringValue(KITS::TagInfo::NFCF_PMM, "")); in SetWantExtraParam() 59 want.SetParam(KIT in SetWantExtraParam() [all...] |
/foundation/filemanagement/storage_service/services/storage_manager/volume/src/ |
H A D | notification.cpp | 41 wantParams.SetParam("id", AAFwk::String::Box(volume->GetId())); in NotifyVolumeChange() 42 wantParams.SetParam("diskId", AAFwk::String::Box(volume->GetDiskId())); in NotifyVolumeChange() 43 wantParams.SetParam("fsUuid", AAFwk::String::Box(volume->GetUuid())); in NotifyVolumeChange() 44 wantParams.SetParam("flags", AAFwk::Integer::Box(volume->GetFlags())); in NotifyVolumeChange() 52 wantParams.SetParam("volumeState", AAFwk::Integer::Box(UNMOUNTED)); in NotifyVolumeChange() 57 wantParams.SetParam("volumeState", AAFwk::Integer::Box(MOUNTED)); in NotifyVolumeChange() 58 wantParams.SetParam("path", AAFwk::String::Box(volume->GetPath())); in NotifyVolumeChange() 59 wantParams.SetParam("fsType", AAFwk::Integer::Box(volume->GetFsType())); in NotifyVolumeChange() 68 wantParams.SetParam("volumeState", AAFwk::Integer::Box(EJECTING)); in NotifyVolumeChange()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_common_event_mgr.cpp | 138 want.SetParam(Constants::UID, installResult.uid); in SetNotifyWant() 139 want.SetParam(Constants::USER_ID, BundleUtil::GetUserIdByUid(installResult.uid)); in SetNotifyWant() 140 want.SetParam(Constants::ABILITY_NAME, installResult.abilityName); in SetNotifyWant() 141 want.SetParam(ACCESS_TOKEN_ID, static_cast<int32_t>(installResult.accessTokenId)); in SetNotifyWant() 142 want.SetParam(IS_AGING_UNINSTALL, installResult.isAgingUninstall); in SetNotifyWant() 143 want.SetParam(APP_ID, installResult.appId); in SetNotifyWant() 144 want.SetParam(IS_MODULE_UPDATE, installResult.isModuleUpdate); in SetNotifyWant() 145 want.SetParam(APP_IDENTIFIER, installResult.appIdentifier); in SetNotifyWant() 146 want.SetParam(APP_DISTRIBUTION_TYPE, installResult.appDistributionType); in SetNotifyWant() 147 want.SetParam(BUNDLE_TYP in SetNotifyWant() [all...] |
/foundation/ability/dmsfwk/services/dtbschedmgr/include/distributedWant/ |
H A D | distributed_want.h | 352 DistributedWant& SetParam(const std::string& key, const sptr<IRemoteObject>& remoteObject); 360 DistributedWant& SetParam(const std::string& key, bool value); 368 DistributedWant& SetParam(const std::string& key, const std::vector<bool>& value); 393 DistributedWant& SetParam(const std::string& key, AAFwk::byte value); 401 DistributedWant& SetParam(const std::string& key, const std::vector<AAFwk::byte>& value); 426 DistributedWant& SetParam(const std::string& key, AAFwk::zchar value); 434 DistributedWant& SetParam(const std::string& key, const std::vector<AAFwk::zchar>& value); 459 DistributedWant& SetParam(const std::string& key, int value); 467 DistributedWant& SetParam(const std::string& key, const std::vector<int>& value); 492 DistributedWant& SetParam(cons [all...] |
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_add_form_test/ |
H A D | fms_form_mgr_add_form_test.cpp | 213 want.SetParam(Constants::PARAM_FORM_HOST_BUNDLENAME_KEY, FORM_HOST_BUNDLE_NAME); in HWTEST_F() 214 want.SetParam(Constants::PARAM_MODULE_NAME_KEY, PARAM_PROVIDER_MODULE_NAME); in HWTEST_F() 215 want.SetParam(Constants::PARAM_FORM_NAME_KEY, PARAM_FORM_NAME); in HWTEST_F() 216 want.SetParam(Constants::PARAM_FORM_DIMENSION_KEY, PARAM_FORM_DIMENSION_2_1); in HWTEST_F() 218 want.SetParam(Constants::PARAM_FORM_TEMPORARY_KEY, false); in HWTEST_F() 219 want.SetParam(Constants::ACQUIRE_TYPE, Constants::ACQUIRE_TYPE_CREATE_FORM); in HWTEST_F() 307 want.SetParam(Constants::PARAM_FORM_HOST_BUNDLENAME_KEY, FORM_HOST_BUNDLE_NAME); in HWTEST_F() 308 want.SetParam(Constants::PARAM_MODULE_NAME_KEY, PARAM_PROVIDER_MODULE_NAME); in HWTEST_F() 309 want.SetParam(Constants::PARAM_FORM_NAME_KEY, PARAM_FORM_NAME); in HWTEST_F() 310 want.SetParam(Constant in HWTEST_F() [all...] |
/foundation/arkui/ace_engine/test/unittest/interfaces/ |
H A D | form_render_test.cpp | 80 want.SetParam(FORM_WIDTH_KEY, FORM_WIDTH); in HWTEST_F() 81 want.SetParam(FORM_HEIGHT_KEY, FORM_HEIGHT); in HWTEST_F() 82 want.SetParam(FORM_RENDERER_COMP_ID, FORM_COMPONENT_ID_1); in HWTEST_F() 83 want.SetParam(FORM_RENDERER_ALLOW_UPDATE, true); in HWTEST_F() 84 want.SetParam(FORM_RENDER_STATE, true); in HWTEST_F() 130 want2.SetParam(FORM_WIDTH_KEY, FORM_WIDTH); in HWTEST_F() 131 want2.SetParam(FORM_HEIGHT_KEY, FORM_HEIGHT); in HWTEST_F() 132 want2.SetParam(FORM_RENDERER_COMP_ID, FORM_COMPONENT_ID_2); in HWTEST_F() 133 want2.SetParam(FORM_RENDERER_ALLOW_UPDATE, true); in HWTEST_F() 134 want2.SetParam(FORM_RENDER_STAT in HWTEST_F() [all...] |
/foundation/ability/dmsfwk/test/fuzztest/distributedwant_fuzzer/ |
H A D | distributedwant_fuzzer.cpp | 104 want->SetParam(key, remoteObject); in DoSomethingInterestingWithMyAPI_DistributedWant_004() 106 want->SetParam(key, boolValue); in DoSomethingInterestingWithMyAPI_DistributedWant_004() 109 want->SetParam(key, byteValue); in DoSomethingInterestingWithMyAPI_DistributedWant_004() 112 want->SetParam(key, byteVector); in DoSomethingInterestingWithMyAPI_DistributedWant_004() 115 want->SetParam(key, charValue); in DoSomethingInterestingWithMyAPI_DistributedWant_004() 126 want->SetParam(key, charVector); in DoSomethingInterestingWithMyAPI_DistributedWant_005() 129 want->SetParam(key, intVector); in DoSomethingInterestingWithMyAPI_DistributedWant_005() 132 want->SetParam(key, doubleValue); in DoSomethingInterestingWithMyAPI_DistributedWant_005() 135 want->SetParam(key, doubleVector); in DoSomethingInterestingWithMyAPI_DistributedWant_005() 138 want->SetParam(ke in DoSomethingInterestingWithMyAPI_DistributedWant_005() [all...] |
/foundation/ability/form_fwk/test/unittest/fms_form_provider_client_test/ |
H A D | form_provider_client_test.cpp | 91 want.SetParam(Constants::PARAM_FORM_MANAGER_SERVICE_BUNDLENAME_KEY, FORM_MANAGER_SERVICE_BUNDLE_NAME) in HWTEST_F() 92 .SetParam(Constants::ACQUIRE_TYPE, 100) in HWTEST_F() 93 .SetParam(Constants::FORM_CONNECT_ID, 100L) in HWTEST_F() 94 .SetParam(Constants::PARAM_FORM_IDENTITY_KEY, 100L) in HWTEST_F() 95 .SetParam(Constants::FORM_SUPPLY_INFO, FORM_SUPPLY_INFO); in HWTEST_F() 117 want.SetParam(Constants::PARAM_FORM_MANAGER_SERVICE_BUNDLENAME_KEY, FORM_MANAGER_SERVICE_BUNDLE_NAME) in HWTEST_F() 118 .SetParam(Constants::ACQUIRE_TYPE, 200) in HWTEST_F() 119 .SetParam(Constants::FORM_CONNECT_ID, 200L) in HWTEST_F() 120 .SetParam(Constants::PARAM_FORM_IDENTITY_KEY, 200L) in HWTEST_F() 121 .SetParam(Constant in HWTEST_F() [all...] |
/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | form_utils_impl.cpp | 48 want.SetParam(key, std::string()); in RouterEvent() 50 want.SetParam(key, child->GetString()); in RouterEvent() 52 want.SetParam(key, child->GetInt()); in RouterEvent() 54 want.SetParam(key, std::string()); in RouterEvent() 59 want.SetParam("params", params->ToString()); in RouterEvent() 128 want.SetParam(key, std::string()); in BackgroundEvent() 130 want.SetParam(key, child->GetString()); in BackgroundEvent() 132 want.SetParam(key, child->GetInt()); in BackgroundEvent() 134 want.SetParam(key, std::string()); in BackgroundEvent() 139 want.SetParam("param in BackgroundEvent() [all...] |
/foundation/ability/dmsfwk/services/dtbschedmgr/test/unittest/distributedWant/ |
H A D | distributed_want_test.cpp | 163 want.SetParam(boolType, true); in HWTEST_F() 164 want.SetParam(byteType, 1); in HWTEST_F() 165 want.SetParam(charType, 6); in HWTEST_F() 166 want.SetParam(shortType, 444); in HWTEST_F() 167 want.SetParam(intType, 1111); in HWTEST_F() 168 want.SetParam(longType, 12345); in HWTEST_F() 169 want.SetParam(floatType, 1.1); in HWTEST_F() 170 want.SetParam(doubleType, 1.11); in HWTEST_F() 171 want.SetParam(stringType, std::string("string...")); in HWTEST_F() 177 want.SetParam(doubleArrayTyp in HWTEST_F() [all...] |
/foundation/ability/ability_runtime/test/unittest/services/ability_util_test/ |
H A D | ability_util_test.cpp | 70 want.SetParam(AbilityUtil::DLP_PARAMS_SANDBOX, true); in HWTEST_F() 84 want.SetParam(AbilityUtil::DLP_PARAMS_SANDBOX, true); in HWTEST_F() 99 want.SetParam(AbilityUtil::DLP_PARAMS_SANDBOX, true); in HWTEST_F() 114 want.SetParam(AbilityUtil::DLP_PARAMS_SANDBOX, true); in HWTEST_F() 129 want.SetParam(AbilityUtil::DLP_PARAMS_SANDBOX, true); in HWTEST_F() 145 want.SetParam(Want::PARAM_RESV_WINDOW_MODE, 0); in HWTEST_F() 163 want.SetParam(Want::PARAM_RESV_WINDOW_MODE, 0); in HWTEST_F() 181 want.SetParam(Want::PARAM_RESV_WINDOW_MODE, 0); in HWTEST_F()
|
/foundation/filemanagement/app_file_service/services/backup_sa/src/module_notify/ |
H A D | notify_work_service.cpp | 39 want.SetParam("bundleName", bundleName); in NotifyBundleDetail() 40 want.SetParam("userId", bundleDetailInfo.userId); in NotifyBundleDetail() 41 want.SetParam("index", bundleDetailInfo.bundleIndex); in NotifyBundleDetail() 42 want.SetParam("detail", bundleDetail); in NotifyBundleDetail()
|
/foundation/ability/ability_runtime/services/abilitymgr/src/dialog_session/ |
H A D | dialog_session_manager.cpp | 218 targetWant.SetParam("isSelector", dialogCallerInfo->isSelector); in SendDialogResult() 219 targetWant.SetParam(DIALOG_SESSION_ID, dialogSessionId); in SendDialogResult() 222 targetWant.SetParam(AAFwk::Want::PARAM_APP_CLONE_INDEX_KEY, appIndex); in SendDialogResult() 225 targetWant.SetParam(AAFwk::Want::PARAM_APP_CLONE_INDEX_KEY, 0); in SendDialogResult() 289 parameters.SetParam("deviceType", AAFwk::String::Box(OHOS::system::GetDeviceType())); in CreateJumpModalDialog() 290 parameters.SetParam("userId", AAFwk::Integer::Box(userId)); in CreateJumpModalDialog() 310 sessionWant.SetParam("deviceType", OHOS::system::GetDeviceType()); in CreateImplicitSelectorModalDialog() 311 sessionWant.SetParam("userId", userId); in CreateImplicitSelectorModalDialog() 312 sessionWant.SetParam("action", abilityRequest.want.GetAction()); in CreateImplicitSelectorModalDialog() 313 sessionWant.SetParam("wantTyp in CreateImplicitSelectorModalDialog() [all...] |