Home
last modified time | relevance | path

Searched refs:napi_get_value_bigint_int64 (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/napi/
H A Duse-napi-about-bigint.md22 | napi_get_value_bigint_int64 | 用于从BigInt对象中获取64位带符号整数(int64)值的函数。 |
147 ### napi_get_value_bigint_int64 subsection
164 napi_status status = napi_get_value_bigint_int64(env, args[0], &value, &lossLess);
191 hilog.info(0x0000, 'testTag', 'Test Node-API napi_get_value_bigint_int64: %{public}s',
H A Dnapi-data-types-interfaces.md421 | napi_get_value_bigint_int64 | 获取给定JS BigInt对应的C int64值。 |
/ohos5.0/foundation/arkui/napi/sample/native_module_systemtest/
H A Djs_test_bigint_napi.cpp37 NAPI_CALL(env, napi_get_value_bigint_int64(env, args[0], &input, &lossless)); in BigIntIsLossless()
61 NAPI_CALL(env, napi_get_value_bigint_int64(env, args[0], &input, &lossless)); in BigInt64()
H A Dtest_napi.cpp999 ExpectCheckCall(napi_get_value_bigint_int64(env, result, &resultValue, &lossless));
1028 ExpectCheckCall(napi_get_value_bigint_int64(env, result, &resultValue, &lossless));
1078 ExpectCheckCall(napi_get_value_bigint_int64(env, result, &resultValue, &lossless));
1130 ExpectCheckCall(napi_get_value_bigint_int64(env, result, &resultValue, &lossless));
1159 ExpectCheckCall(napi_get_value_bigint_int64(env, result, &resultValue, &lossless));
1189 ret = napi_get_value_bigint_int64(env, result, &resultValue, &lossless);
1218 ret = napi_get_value_bigint_int64(nullptr, result, &resultValue, &lossless);
1247 ExpectCheckCall(napi_get_value_bigint_int64(env, result, &resultValue, &lossless));
1276 ret = napi_get_value_bigint_int64(env, result, nullptr, &lossless);
1305 ret = napi_get_value_bigint_int64(env, result, &resultValue, nullptr);
/ohos5.0/docs/en/application-dev/napi/
H A Duse-napi-about-bigint.md22 | napi_get_value_bigint_int64 | Obtains a signed 64-bit integer from an ArkTS BigInt object.|
147 ### napi_get_value_bigint_int64 subsection
149 Use **napi_get_value_bigint_int64** to obtain a signed 64-bit integer from an ArkTS BigInt object.
164 napi_status status = napi_get_value_bigint_int64(env, args[0], &value, &lossLess);
191 hilog.info(0x0000, 'testTag', 'Test Node-API napi_get_value_bigint_int64: %{public}s',
H A Dnapi-data-types-interfaces.md404 | napi_get_value_bigint_int64 | Obtains the C int64 equivalent of a JS BigInt.|
/ohos5.0/foundation/arkui/napi/test/unittest/
H A Dtest_napi_ext.cpp250 ASSERT_CHECK_CALL(napi_get_value_bigint_int64(env, result, &resultValue, &flag));
261 ASSERT_CHECK_CALL(napi_get_value_bigint_int64(env, result, &resultValue, &flag));
272 ASSERT_CHECK_CALL(napi_get_value_bigint_int64(env, result, &resultValue, &flag));
H A Dtest_napi.cpp3223 ASSERT_CHECK_CALL(napi_get_value_bigint_int64(env, argument, &numberValue, &flag));
6401 napi_status status = napi_get_value_bigint_int64(env, value, &result, &lossless);
6414 napi_status status = napi_get_value_bigint_int64(env, value, result, &lossless);
6427 napi_status status = napi_get_value_bigint_int64(env, value, &result, lossless);
6439 napi_status status = napi_get_value_bigint_int64(env, value, &result, &lossless);
6452 napi_status status = napi_get_value_bigint_int64(env, value, &result, &lossless);
/ohos5.0/docs/zh-cn/application-dev/reference/native-lib/
H A Dnapi.md155 |FUNC|napi_get_value_bigint_int64|获取给定js `BigInt`对应的C int64值。|10|
/ohos5.0/docs/zh-cn/application-dev/ui/
H A Dnapi-xcomponent-guidelines.md1350 if (napi_ok != napi_get_value_bigint_int64(env, args[0], &value, &lossless)) {
1395 if (napi_ok != napi_get_value_bigint_int64(env, args[index++], &surfaceId, &lossless)) {
/ohos5.0/base/hiviewdfx/hisysevent/interfaces/js/kits/napi/src/
H A Dnapi_hisysevent_util.cpp190 napi_status status = napi_get_value_bigint_int64(env, value, &val, &lossless); in ParseSignedBigIntValue()
/ohos5.0/docs/en/application-dev/ui/
H A Dnapi-xcomponent-guidelines.md1350 if (napi_ok != napi_get_value_bigint_int64(env, args[0], &value, &lossless)) {
1395 if (napi_ok != napi_get_value_bigint_int64(env, args[index++], &surfaceId, &lossless)) {
/ohos5.0/docs/en/application-dev/reference/native-lib/
H A Dnapi.md155 |FUNC|napi_get_value_bigint_int64|Obtains the C int64 equivalent of the given JS BigInt.|10|
/ohos5.0/foundation/arkui/napi/native_engine/
H A Dnative_api.cpp3375 NAPI_EXTERN napi_status napi_get_value_bigint_int64( in napi_get_value_bigint_int64() function