Home
last modified time | relevance | path

Searched full:param (Results 5976 - 6000 of 21786) sorted by relevance

1...<<231232233234235236237238239240>>...872

/third_party/typescript/tests/baselines/reference/
H A DparserArrowFunctionExpression15(target=es6).errors.txt5 false ? (param): string => param : null // Not legal JS; "Unexpected token ':'" at last colon
10 false ? (param): string => param : null
H A DparserArrowFunctionExpression16(target=es3).errors.txt5 true ? false ? (param): string => param : null : null // Not legal JS; "Unexpected token ':'" at last colon
10 true ? false ? (param): string => param : null : null
H A DparserArrowFunctionExpression16(target=es6).errors.txt5 true ? false ? (param): string => param : null : null // Not legal JS; "Unexpected token ':'" at last colon
10 true ? false ? (param): string => param : null : null
H A DjsDeclarationsOptionalTypeLiteralProps1.types6 * @param {object} opts
7 * @param {number} opts.a
8 * @param {number} [opts.b]
9 * @param {number} [opts.c]
/third_party/typescript/tests/cases/conformance/jsdoc/declarations/
H A DjsDeclarationsFunctionJSDoc.ts9 * @param {number} a
10 * @param {string} b
20 * @param {Aleph} a
21 * @param {null} b
/third_party/typescript/tests/cases/conformance/jsdoc/
H A DjsdocSignatureOnReturnedFunction.ts11 * @param {number} a
12 * @param {number} b
22 * @param {number} a
23 * @param {number} b
H A DjsdocTemplateClass.ts13 /** @param {T} x */
19 * @param {T} x
20 * @param {Id<T>} y
21 * @param {Id2} alpha
/third_party/typescript/tests/cases/fourslash/
H A DcodeFixUnusedIdentifier_all_prefix.ts7 //// * @param a First parameter.
8 //// * @param b Second parameter.
20 * @param _a First parameter.
21 * @param _b Second parameter.
H A DjsDocFunctionSignatures5.ts7 //// * @param {String} basePath The base path where the search will be performed.
8 //// * @param {String} pattern A string defining a regexp of a glob pattern.
9 //// * @param {String} type The search pattern type, can be a regexp or a glob.
10 //// * @param {Object} options A object containing options to the search.
H A DrefactorExtractType_js4.ts8 //// * @param {T} b
9 //// * @param {U} c
29 * @param {T} b
30 * @param {U} c
H A DrefactorExtractType_js5.ts8 //// * @param {T} b
9 //// * @param {U} c
29 * @param {T} b
30 * @param {U} c
H A DrefactorExtractType_js6.ts7 //// * @param {T} b
8 //// * @param {U} c
27 * @param {T} b
28 * @param {U} c
/base/iothardware/peripheral/interfaces/inner_api/
H A Diot_pwm.h47 * @param port Indicates the port number of the PWM device.
58 * @param port Indicates the port number of the PWM device.
71 * @param port Indicates the port number of the PWM device.
72 * @param duty Indicates the duty cycle for PWM signal output. The value ranges from 1 to 99.
73 * @param freq Indicates the frequency for PWM signal output.
84 * @param port Indicates the port number of the PWM device.
/base/customization/enterprise_device_management/services/edm_plugin/src/
H A Dfingerprint_auth_plugin.cpp106 UserIam::UserAuth::GlobalConfigParam param; in SetGlobalConfigParam() local
107 param.userIds = userIds; in SetGlobalConfigParam()
108 param.authTypes.push_back(UserIam::UserAuth::AuthType::FINGERPRINT); in SetGlobalConfigParam()
109 param.type = UserIam::UserAuth::GlobalConfigType::ENABLE_STATUS; in SetGlobalConfigParam()
110 param.value.enableStatus = !policy.globalDisallow && userIds.size() == 0; in SetGlobalConfigParam()
111 return UserIam::UserAuth::UserAuthClient::GetInstance().SetGlobalConfigParam(param); in SetGlobalConfigParam()
/base/global/resource_management/interfaces/js/innerkits/core/include/
H A Dresource_manager_napi_async_impl.h32 * @param env The environment that the API is invoked under.
33 * @param info The additional information about the context in which the callback was invoked.
34 * @param functionName The function name
42 * @param env The environment that the API is invoked under.
43 * @param status The result status of napi function.
44 * @param data The callback data passed into function
/base/print/print_fwk/test/fuzztest/scancallback_fuzzer/
H A Dscancallback_fuzzer.cpp29 CallbackParam param; in TestSetCallbackParam() local
33 param.InitialCallbackParam(env, ref, mutex); in TestSetCallbackParam()
36 param.SetCallbackParam(state, tcpInfo); in TestSetCallbackParam()
41 CallbackParam param; in TestSetCallbackSyncParam() local
45 param.InitialCallbackParam(env, ref, mutex); in TestSetCallbackSyncParam()
48 param.SetCallbackSyncParam(state, syncInfo); in TestSetCallbackSyncParam()
/base/notification/common_event_service/interfaces/inner_api/
H A Dcommon_event_subscriber.h33 * @param subscribeInfo Indicates the subscribeInfo
43 * @param data Indicates the common event data.
57 * @param code Indicates the result code of the current ordered common event
72 * @param data Indicates the result data of the current ordered common event.
87 * @param code Indicates the result code of the current ordered common event.
88 * @param data Indicates the result data of the current ordered common event.
/base/notification/eventhandler/frameworks/eventhandler/include/
H A Dio_waiter.h57 * @param lock An unique lock which must be locked by the current thread.
58 * @param nanoseconds Nanoseconds for time out, negative value indicate waiting forever.
83 * @param fileDescriptor File descriptor which need to listen.
84 * @param events Events from file descriptor, such as input, output.
93 * @param fileDescriptor File descriptor which need to remove.
100 * @param callback Callback function to handle events from file descriptors.
/base/startup/init/services/param/liteos/
H A Dparam_client.c32 PARAM_CHECK(ret == 0, return -1, "Failed to init param workspace"); in ClientInit()
55 if ((ctrlService & PARAM_CTRL_SERVICE) != PARAM_CTRL_SERVICE) { // ctrl param in SystemSetParameter()
58 PARAM_CHECK(ret == 0, return ret, "Failed to set param %d name %s %s", ret, name, value); in SystemSetParameter()
60 PARAM_CHECK(ret == 0, return ret, "Failed to set persist param name %s", name); in SystemSetParameter()
84 ParamNode *param = SystemCheckMatchParamWait(name, value); in SystemWaitParameter() local
85 if (param != NULL) { in SystemWaitParameter()
H A Dparam_service.c67 // param space in InitParamService()
83 PARAM_CHECK(ret == 0, continue, "Failed to set param %d name %s %s", in InitParamService()
110 if ((ctrlService & PARAM_CTRL_SERVICE) != PARAM_CTRL_SERVICE) { // ctrl param in SystemWriteParam()
113 PARAM_CHECK(ret == 0, return ret, "Failed to set param %d name %s %s", ret, name, value); in SystemWriteParam()
115 PARAM_CHECK(ret == 0, return ret, "Failed to set persist param name %s", name); in SystemWriteParam()
145 // get persist param in LiteParamService()
/base/web/webview/ohos_interface/include/ohos_nweb/
H A Dnweb_url_resource_response.h52 * @param input_stream set inputstream for example: fread(buf, 1, sizeof(buf),
60 * @param encoding encoding { "utf-8" }
74 * @param mime_type mime_type{ "text/html" }
88 * @param response_headers response header
102 * @param status_code status code
103 * @param reasonphrase reason phrase
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/include/
H A Dark_web_url_resource_response.h40 * @param input_stream set inputstream for example: fread(buf, 1, sizeof(buf),
65 * @param response_headers response header
84 * @param mime_type mime_type{ "text/html" }
100 * @param encoding encoding { "utf-8" }
137 * @param status_code status code
138 * @param reasonphrase reason phrase
H A Dark_web_adsblock_manager.h32 * @param rulesFile absolute easylist file path contains app customized ads block rules.
33 * @param replace replace internal rules or not;
41 * @param domainSuffix list of domains suffix. if web page url matches someone in the list,
50 * @param domainSuffix : list of domains suffix needed be removed from disallow list
68 * @param domainSuffix list of domains suffix, if web page url matches someone in the list,
77 * @param domainSuffix : list of domains suffix needed be removed from allow list
/foundation/ability/idl_tool/test/hdi_unittest/input_ddk_v1_0/foo/input/ddk/v1_0/
H A DIHidDdk.idl46 * @param hidDevice Pointer to the basic information required for creating a device, including the device name,
48 * @param hidEventProperties Pointer to the events of the device to be observed, including the event type and
50 * @param deviceId uint32_t number for storing newly created device ID if the operation is successful.
64 * @param deviceId ID of the device, to which the event list is sent.
65 * @param items List of events to sent. The event information includes the event type (<b>Hid_EventType</b>),
82 * @param deviceId ID of the device to destroy.
/foundation/ability/idl_tool/test/hdi_unittest/light_v1_0/foo/light/v1_0/
H A DILightInterface.idl50 * @param info Indicates the vector of the light information. For details, see {@link HdfLightInfo}.
62 * @param lightId Indicates the light id. For details, see {@link HdfLightId}.
64 * @param effect Indicates the pointer to the lighting effect, if the lightbrightness field is 0,
79 * @param lightId Indicates the light id. For details, see {@link HdfLightId}.
81 * @param colors Color and brightness corresponding to multiple lights, see {@link LightColor}.
93 * @param lightId Indicates the light id. For details, see {@link HdfLightId}.

Completed in 12 milliseconds

1...<<231232233234235236237238239240>>...872