Home
last modified time | relevance | path

Searched full:param (Results 6001 - 6025 of 22011) sorted by relevance

1...<<241242243244245246247248249250>>...881

/base/global/i18n_lite/tools/i18n-dat-tool/src/main/java/ohos/global/i18n/
H A DUtils.java59 * @param languageTag Use this languageTag to compute the fallback
82 * @param languageTag tag to be checked
175 * @param out data will be written into the stream
176 * @param hashCode reserved for future use
177 * @param localesCount valid locales in total
178 * @param metaCount all metaData in total
197 * @param locale Indicates the specified locale related to the output mask
198 * @param maskOut The value of mask will be stored in the first element of maskOut
242 * @param src the original types.h file
243 * @param ds
[all...]
/base/customization/enterprise_device_management/interfaces/kits/common/src/
H A Dnapi_edm_common.cpp100 bool ParseLong(napi_env env, int64_t &param, napi_value args) in ParseLong() argument
104 napi_get_value_int64(env, args, &param) != napi_ok) { in ParseLong()
111 bool ParseInt(napi_env env, int32_t &param, napi_value args) in ParseInt() argument
115 napi_get_value_int32(env, args, &param) != napi_ok) { in ParseInt()
122 bool ParseCallback(napi_env env, napi_ref &param, napi_value args) in ParseCallback() argument
126 napi_create_reference(env, args, NAPI_RETURN_ONE, &param) != napi_ok) { in ParseCallback()
133 bool ParseUint(napi_env env, uint32_t &param, napi_value args) in ParseUint() argument
137 napi_get_value_uint32(env, args, &param) != napi_ok) { in ParseUint()
144 bool ParseBool(napi_env env, bool &param, napi_value args) in ParseBool() argument
148 napi_get_value_bool(env, args, &param) ! in ParseBool()
155 ParseString(napi_env env, std::string &param, napi_value args) ParseString() argument
[all...]
/base/startup/init/services/param/manager/
H A Dparam_server.c62 PARAM_LOGV("Add param from cmdline %s %s", name, value); in CommonDealFun()
64 PARAM_CHECK(ret == 0, return ret, "Invalid param name %s", name); in CommonDealFun()
65 PARAM_LOGV("Param name %s, value %s", name, value); in CommonDealFun()
67 PARAM_CHECK(ret == 0, return ret, "Failed to write param %s %s", name, value); in CommonDealFun()
91 PARAM_CHECK(ret == 0, return ret, "Failed to write param %s", name); in ReadSnFromFile()
104 PARAM_CHECK(ret == 0, return ret, "Failed to write param %s %s", name, value); in SnDealFun()
129 PARAM_LOGV("Param name %s, value %s", fullName, value); in Common2ConstDealFun()
131 PARAM_CHECK(ret == 0, return ret, "Failed to write param %s %s", fullName, value); in Common2ConstDealFun()
222 // cmdline with prefix but not matched, add to param by default in CmdlineIterator()
223 PARAM_LOGI("add proc cmdline param in CmdlineIterator()
[all...]
/base/useriam/user_auth_framework/test/unittest/services/src/
H A Duser_auth_stub_test.cpp583 [](const GlobalConfigParam &param) { in HWTEST_F()
594 GlobalConfigParam param = {}; in HWTEST_F() local
595 param.type = PIN_EXPIRED_PERIOD; in HWTEST_F()
596 param.value.pinExpiredPeriod = 1; in HWTEST_F()
597 EXPECT_TRUE(data.WriteInt32(param.type)); in HWTEST_F()
598 EXPECT_TRUE(data.WriteInt64(param.value.pinExpiredPeriod)); in HWTEST_F()
611 [](const GlobalConfigParam &param) { in HWTEST_F()
622 GlobalConfigParam param = {}; in HWTEST_F() local
623 param.type = ENABLE_STATUS; in HWTEST_F()
624 param in HWTEST_F()
[all...]
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/hcc/
H A Dhcc_hmac.c113 hi_u32 hcc_hmac_tx_hcc_hdr_init(oal_netbuf_stru *netbuf, const hcc_transfer_param *param) in hcc_hmac_tx_hcc_hdr_init() argument
122 pad_hdr = HCC_HDR_RESERVED_MAX_LEN - param->extend_len; in hcc_hmac_tx_hcc_hdr_init()
124 payload_len = oal_netbuf_len(netbuf) - param->extend_len; in hcc_hmac_tx_hcc_hdr_init()
136 hcc_hdr->main_type = param->main_type; in hcc_hmac_tx_hcc_hdr_init()
137 hcc_hdr->sub_type = param->sub_type; in hcc_hmac_tx_hcc_hdr_init()
140 hcc_hdr->pad_hdr = HCC_HDR_RESERVED_MAX_LEN - param->extend_len; in hcc_hmac_tx_hcc_hdr_init()
183 hi_u32 hcc_host_tx(hcc_handler_stru *hcc_handler, oal_netbuf_stru *netbuf, const hcc_transfer_param *param) in hcc_host_tx() argument
190 hcc_queue = &hcc_handler->hcc_transer_info.hcc_queues[HCC_TX].queues[param->queue_id]; in hcc_host_tx()
197 err_code = hcc_hmac_tx_hcc_hdr_init(netbuf, param); in hcc_host_tx()
206 if (param in hcc_host_tx()
262 hcc_transfer_param param = { 0 }; hcc_tx_netbuf_normal() local
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/taurus/ai_sample/mpp_help/src/
H A Dvgs_img.c80 * @param frm[in|out]: 若成功,创建的frame信息会复制到frm.
81 * @param width[in]: frame width.
82 * @param height[in]: frame height.
83 * @param pixelFormat[in]: 置为-1表示取默认值PIXEL_FORMAT_YVU_SEMIPLANAR_420.
84 * @param bitWidth[in]: 置为-1表示取默认值DATA_BITWIDTH_8.
85 * @param compressMode[in]: 置为-1表示取默认值COMPRESS_MODE_NONE.
86 * @param align[in]: 对齐的字节长度. 置为-1表示取默认值'自动对齐'.
91 * @param frm[in|out]: If successful, the created frame information will be copied to frm.
92 * @param width[in]: frame width.
93 * @param heigh
[all...]
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Dwldev_common.c112 const s8 *iovar_name, const s8 *param, s32 paramlen, in wldev_mkiovar()
117 iolen = bcm_mkiovar(iovar_name, param, paramlen, iovar_buf, buflen); in wldev_mkiovar()
123 const void *param, s32 paramlen, void *buf, s32 buflen, struct mutex* buf_sync) in wldev_iovar_getbuf()
138 ret = wldev_mkiovar(iovar_name, param, paramlen, buf, buflen); in wldev_iovar_getbuf()
153 const void *param, s32 paramlen, void *buf, s32 buflen, struct mutex* buf_sync) in wldev_iovar_setbuf()
160 iovar_len = wldev_mkiovar(iovar_name, param, paramlen, buf, buflen); in wldev_iovar_setbuf()
204 const s8 *iovar_name, const s8 *param, s32 paramlen, in wldev_mkiovar_bsscfg()
219 return wldev_mkiovar(iovar_name, param, paramlen, in wldev_mkiovar_bsscfg()
242 /* bss config index as first param */ in wldev_mkiovar_bsscfg()
249 memcpy(p, param, paramle in wldev_mkiovar_bsscfg()
111 wldev_mkiovar( const s8 *iovar_name, const s8 *param, s32 paramlen, s8 *iovar_buf, u32 buflen) wldev_mkiovar() argument
121 wldev_iovar_getbuf( struct net_device *dev, s8 *iovar_name, const void *param, s32 paramlen, void *buf, s32 buflen, struct mutex* buf_sync) wldev_iovar_getbuf() argument
151 wldev_iovar_setbuf( struct net_device *dev, s8 *iovar_name, const void *param, s32 paramlen, void *buf, s32 buflen, struct mutex* buf_sync) wldev_iovar_setbuf() argument
203 wldev_mkiovar_bsscfg( const s8 *iovar_name, const s8 *param, s32 paramlen, s8 *iovar_buf, s32 buflen, s32 bssidx) wldev_mkiovar_bsscfg() argument
255 wldev_iovar_getbuf_bsscfg( struct net_device *dev, s8 *iovar_name, void *param, s32 paramlen, void *buf, s32 buflen, s32 bsscfg_idx, struct mutex* buf_sync) wldev_iovar_getbuf_bsscfg() argument
273 wldev_iovar_setbuf_bsscfg( struct net_device *dev, const s8 *iovar_name, const void *param, s32 paramlen, void *buf, s32 buflen, s32 bsscfg_idx, struct mutex* buf_sync) wldev_iovar_setbuf_bsscfg() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/canvas/
H A Doffscreen_canvas_rendering_context_2d_model_ng.cpp258 void OffscreenCanvasRenderingContext2DModelNG::BezierCurveTo(const BezierCurveParam& param) in BezierCurveTo() argument
261 pattern_->BezierCurveTo(param); in BezierCurveTo()
264 void OffscreenCanvasRenderingContext2DModelNG::QuadraticCurveTo(const QuadraticCurveParam& param) in QuadraticCurveTo() argument
267 pattern_->QuadraticCurveTo(param); in QuadraticCurveTo()
270 void OffscreenCanvasRenderingContext2DModelNG::ArcTo(const ArcToParam& param) in ArcTo() argument
273 pattern_->ArcTo(param); in ArcTo()
276 void OffscreenCanvasRenderingContext2DModelNG::Arc(const ArcParam& param) in Arc() argument
279 pattern_->Arc(param); in Arc()
282 void OffscreenCanvasRenderingContext2DModelNG::Ellipse(const EllipseParam& param) in Ellipse() argument
285 pattern_->Ellipse(param); in Ellipse()
377 SetTransform(TransformParam& param, bool lengthFlag) SetTransform() argument
389 Transform(const TransformParam& param) Transform() argument
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_node/src/
H A Dbuilder_node.ts56 public reuse(param?: Object): void {
57 this._JSBuilderNode.reuse(param);
83 public reuse(param: Object): void {
89 child.aboutToReuseInternal(param);
155 private isObject(param: Object): boolean {
156 const typeName = Object.prototype.toString.call(param);
193 public update(param: Object) {
197 this.params_ = param;
319 * @param elmtId ID of element.
320 * @param itemArra
[all...]
/foundation/arkui/ui_lite/interfaces/kits/components/
H A Dui_image_animator.h105 * @param imageSrc Indicates the pointer to the {@link ImageAnimatorInfo} array for storing the configured
107 * @param imageNum Indicates the number of images.
108 * @param timeOfUpdate Indicates the interval for updating images, in milliseconds. The default value is <b>1</b>.
118 * @param imageSrc Indicates the pointer to the {@link ImageAnimatorInfo} array for storing the configured
120 * @param imageNum Indicates the number of images.
130 * @param timeOfUpdate Indicates the interval for updating images, in milliseconds.
150 * @param timeOfPause Indicates the interval between two playbacks of an infinitely repeated animator, in
190 * @param fixed Specifies whether the image size is fixed to the view size. The value <b>true</b> indicates
219 * @param repeat Specifies whether the animator is played for infinite times. <b>true</b> (default value)
250 * @param time
[all...]
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Dabs_result_set.h62 * @param columnIndex Indicates the specified column index, which starts from 0.
74 * @param columnIndex Indicates the specified column index, which starts from 0.
86 * @param columnIndex Indicates the specified column index, which starts from 0.
98 * @param columnIndex Indicates the specified column index, which starts from 0.
110 * @param columnIndex Indicates the specified column index, which starts from 0.
122 * @param columnIndex Indicates the specified column index, which starts from 0.
134 * @param columnIndex Indicates the specified column index, which starts from 0.
146 * @param columnIndex Indicates the specified column index, which starts from 0.
155 * @param columnIndex Indicates the specified column index, which starts from 0.
170 * @param positio
[all...]
/third_party/ffmpeg/libavcodec/
H A Dvaapi_h264.c50 * @param[out] va_pic A pointer to VA API's own picture struct
51 * @param[in] pic A pointer to the FFmpeg picture struct to convert
52 * @param[in] pic_structure The picture field type (as defined in mpegvideo.h),
155 * @param[out] RefPicList VA API internal reference picture list
156 * @param[in] ref_list A pointer to the FFmpeg reference list
157 * @param[in] ref_count The number of reference pictures in ref_list
179 * @param[in] h A pointer to the current H.264 context
180 * @param[in] list The reference frame list index to use
181 * @param[out] luma_weight_flag VA API plain luma weight flag
182 * @param[ou
[all...]
H A Dqdm2.c243 * @param data pointer to data to be checksummed
244 * @param length data length
245 * @param value checksum value
262 * @param gb bitreader context
263 * @param sub_packet packet under analysis
296 * @param list list of subpackets to be scanned
297 * @param type type of searched subpacket
315 * @param q context
343 * @param q context
344 * @param s
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DMutablePatternModifier.java64 * @param isStrong
78 * @param field
89 * @param signDisplay
91 * @param perMille
93 * @param approximately
105 * @param symbols
107 * @param currency
109 * @param unitWidth
111 * @param rules
130 * @param signu
[all...]
/third_party/mbedtls/library/
H A Dmps_reader.h240 * \param reader The reader to be initialized.
241 * \param acc The buffer to be used as a temporary accumulator
250 * \param acc_len The size in Bytes of \p acc.
262 * \param reader The reader to be freed.
272 * \param reader The reader context to use. The reader must be
274 * \param buf The buffer to be managed by the reader.
275 * \param buflen The size in Bytes of \p buffer.
299 * \param reader The reader context to use. The reader must be
301 * \param paused If not \c NULL, the integer at address \p paused will be
321 * \param reade
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TextAPI/MachO/
H A DInterfaceFile.h160 /// \param Path_ The path to the source file.
173 /// \param Kind The file type.
195 /// \param Target the target to add into.
202 /// \param Targets the collection of targets.
272 /// \param Target_ The target applicable to Parent
273 /// \param Parent The name of Parent
291 /// \param InstallName The name of the client that is allowed to link this library.
292 /// \param Target The target triple for which this applies.
304 /// \param InstallName The name of the library to re-export.
305 /// \param Targe
[all...]
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/stable-triangle-clamp-conditional-mix/
H A D1.spvasm22 OpName %param "param"
23 OpName %param_0 "param"
25 OpName %param_1 "param"
26 OpName %param_2 "param"
28 OpName %param_3 "param"
29 OpName %param_4 "param"
32 OpName %param_5 "param"
33 OpName %param_6 "param"
34 OpName %param_7 "param"
[all...]
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/stable-triangle-nested-conditional-clamped-float/
H A D0.spvasm17 OpName %param "param"
18 OpName %param_0 "param"
20 OpName %param_1 "param"
21 OpName %param_2 "param"
23 OpName %param_3 "param"
24 OpName %param_4 "param"
30 OpName %param_5 "param"
31 OpName %param_6 "param"
32 OpName %param_7 "param"
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Duniform_real_distribution_test.cc89 for (const auto& param : { in TYPED_TEST()
122 const auto a = param.a(); in TYPED_TEST()
123 const auto b = param.b(); in TYPED_TEST()
125 EXPECT_EQ(before.a(), param.a()); in TYPED_TEST()
126 EXPECT_EQ(before.b(), param.b()); in TYPED_TEST()
129 absl::uniform_real_distribution<TypeParam> via_param(param); in TYPED_TEST()
140 EXPECT_NE(before.param(), after.param()); in TYPED_TEST()
147 EXPECT_EQ(before.param(), after.param()); in TYPED_TEST()
[all...]
/third_party/typescript/lib/fr/
H A DdiagnosticMessages.generated.json4 "A_0_parameter_must_be_the_first_parameter_2680": "Un paramètre '{0}' doit être le premier paramètre.",
8 "A_binding_pattern_parameter_cannot_be_optional_in_an_implementation_signature_2463": "Un paramètre de modèle de liaison ne peut pas être facultatif dans une signature d'implémentation.",
16 "A_computed_property_name_cannot_reference_a_type_parameter_from_its_containing_type_2467": "Un nom de propriété calculée ne peut pas référencer un paramètre de type à partir de son type conteneur.",
27 "A_constructor_cannot_have_a_this_parameter_2681": "Un constructeur ne peut pas avoir un paramètre 'this'.",
44 "A_get_accessor_cannot_have_parameters_1054": "Un accesseur 'get' ne peut pas avoir de paramètres.",
52 "A_mixin_class_must_have_a_constructor_with_a_single_rest_parameter_of_type_any_2545": "Une classe mixin doit avoir un constructeur avec un paramètre rest unique de type 'any[]'.",
62 "A_parameter_initializer_is_only_allowed_in_a_function_or_constructor_implementation_2371": "Un initialiseur de paramètre est uniquement autorisé dans une implémentation de fonction ou de constructeur.",
63 "A_parameter_property_cannot_be_declared_using_a_rest_parameter_1317": "Impossible de déclarer une propriété de paramètre à l'aide d'un paramètr
[all...]
/base/hiviewdfx/hiview/utility/smart_parser/rule/
H A Dextract_rule.cpp133 std::vector<std::string> ExtractRule::GetJsonArray(const Json::Value& json, const string& param) in GetJsonArray() argument
135 if (json.isNull() || !json.isMember(param) || !json[param].isArray()) { in GetJsonArray()
136 HIVIEW_LOGE("failed to get json array number %{public}s.\n", param.c_str()); in GetJsonArray()
140 int jsonSize = static_cast<int>(json[param].size()); in GetJsonArray()
147 result.push_back(json[param][i].asString()); in GetJsonArray()
235 GetExtractParam(object[i], command.param, L3_PARAM); in ParseRuleParam()
246 std::map<std::string, std::string>& param, const std::string& preKey) const in GetExtractParam()
251 param.emplace(iter.key().asString(), (*iter).asString()); in GetExtractParam()
245 GetExtractParam(const Json::Value& rules, std::map<std::string, std::string>& param, const std::string& preKey) const GetExtractParam() argument
/base/startup/init/test/benchmark/
H A Dparameter_benchmark.cpp127 * @param state
146 * @param state
167 * @param state
187 * @param state
211 * @param state
236 * @param state
260 * @param state
279 * @param state
307 * @param state
/base/telephony/sms_mms/frameworks/native/mms/src/
H A Dmms_encode_buffer.cpp30 * @param value
107 * @param value
132 * @param value
150 * @param value
170 * @param value
210 * @param value
251 * @param value
287 * @param value
318 * @param value
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/hi_adc/
H A Dhi_adc.c258 int param; in hilsadc_ioctl() local
263 param = *(int *)(uintptr_t)arg; in hilsadc_ioctl()
264 ret = lsadc_model_select(param); in hilsadc_ioctl()
268 param = *(int *)(uintptr_t)arg; in hilsadc_ioctl()
269 ret = lsadc_chn_valid(param, 1); in hilsadc_ioctl()
273 param = *(int *)(uintptr_t)arg; in hilsadc_ioctl()
274 ret = lsadc_chn_valid(param, 0); in hilsadc_ioctl()
286 param = *(int *)(uintptr_t)arg; in hilsadc_ioctl()
287 ret = lsadc_get_chn_value(param); in hilsadc_ioctl()
/foundation/ability/form_fwk/services/src/
H A Dform_ability_connection.cpp42 * @param element service ability's ElementName.
43 * @param remoteObject the session proxy of service ability.
44 * @param resultCode ERR_OK on success, others on failure.
95 * @param element service ability's ElementName.
96 * @param resultCode ERR_OK on success, others on failure.
112 * @param remoteObject the remote object of service ability.
185 * @param connectId The ability connection id.
218 * @param bundleName bundleName
219 * @param abilityName abilityName

Completed in 25 milliseconds

1...<<241242243244245246247248249250>>...881