/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | statvfsndk.cpp | 33 int intValue = PARAM_0;
in Statvfs() local 36 intValue = statvfs(PATH, &sb);
in Statvfs() 38 intValue = statvfs(nullptr, &sb);
in Statvfs() 41 napi_create_int32(env, intValue, &result);
in Statvfs() 52 int intValue = PARAM_0;
in Statvfs64() local 55 intValue = statvfs(PATH, &sb);
in Statvfs64() 57 intValue = statvfs(nullptr, &sb);
in Statvfs64() 60 napi_create_int32(env, intValue, &result);
in Statvfs64()
|
H A D | statndk.cpp | 70 int intValue = PARAM_0;
in Stat() local 73 intValue = stat(PATH, &sb);
in Stat() 75 intValue = stat(nullptr, &sb);
in Stat() 78 napi_create_int32(env, intValue, &result);
in Stat() 88 int intValue = PARAM_0;
in Stat64() local 91 intValue = stat64(PATH, &sb);
in Stat64() 93 intValue = stat64(nullptr, &sb);
in Stat64() 96 napi_create_int32(env, intValue, &result);
in Stat64()
|
H A D | mathndk.cpp | 2142 int intValue;
in Sincos() local 2143 napi_get_value_int32(env, args[1], &intValue);
in Sincos() 2146 if (intValue == 1) {
in Sincos() 2163 int intValue;
in Sincosl() local 2164 napi_get_value_int32(env, args[1], &intValue);
in Sincosl() 2170 if (intValue == 1) {
in Sincosl() 2186 int intValue;
in Sincosf() local 2187 napi_get_value_int32(env, args[1], &intValue);
in Sincosf() 2193 if (intValue == 1) {
in Sincosf()
|
/test/xts/dcts/distributeddatamgr/jstest/distributed_kv_store/client/hap/src/main/js/test/ |
H A D | KvStoreSecurityLevelS1Jsunit.test.js | 3259 let intValue = Number.MAX_VALUE;
3260 console.info(logTag + "testSyncIntType0300 intValue " + intValue);
3273 expect(result).assertEqual(intValue);
3286 await remoteHelpers.kvPut(TEST_INT_KEY, intValue, "Number");
3318 let intValue = Number.MAX_VALUE;
3319 let putValue = Number(intValue);
3320 console.info(logTag + "testSyncIntType0400 intValue = " + intValue + " putValue = " + putValue);
3333 expect(result).assertEqual(intValue);
[all...] |
/test/xts/acts/multimedia/media/media_cpp_standard/codecFormatNdk/ |
H A D | ActsCodecFormatNdkTest.cpp | 139 int32_t intValue = 1; in HWTEST_F() local 148 OH_AVFormat_SetIntValue(codecFormatIn, intKey, intValue); in HWTEST_F() 157 ASSERT_EQ(intValueOut, intValue); in HWTEST_F()
|
/test/xts/acts/distributeddatamgr/distributedKVStoretest/distributedKVStorejstest/hap/entry/src/ohosTest/js/test/ |
H A D | SingleKvStoreKVPromiseJsTest.js | 303 var intValue = 987654321; 304 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue).then(async (data) => { 309 expect(intValue == data).assertTrue(); 334 let intValue = Number.MAX_VALUE; 335 console.info('SUB_DDM_DKV_SINGLEKVSTORE_PUTINT_PROMISE_0300 intValue ' + intValue); 336 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue).then(async (data) => { 341 expect(intValue == data).assertTrue(); 366 let intValue = Number.MIN_VALUE; 367 console.info('SUB_DDM_DKV_SINGLEKVSTORE_PUTINT_PROMISE_0400 intValue ' [all...] |
H A D | SingleKvStoreKVCallbackJsTest.js | 253 var intValue = 987654321; 254 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue, async function (err,data) { 259 expect((err == undefined) && (intValue == data)).assertTrue(); 279 var intValue = Number.MIN_VALUE; 280 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue, async function (err,data) { 285 expect((err == undefined) && (intValue == data)).assertTrue(); 305 var intValue = Number.MAX_VALUE; 306 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue, async function (err,data) { 311 expect((err == undefined) && (intValue == data)).assertTrue();
|
H A D | DeviceKvStoreKVCallbackJsTest.js | 279 var intValue = 987654321; 280 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue, async function (err,data) { 285 expect((err == undefined) && (intValue == data)).assertTrue(); 305 var intValue = Number.MIN_VALUE; 306 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue, async function (err,data) { 311 expect((err == undefined) && (intValue == data)).assertTrue(); 331 var intValue = Number.MAX_VALUE; 332 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue, async function (err,data) { 337 expect((err == undefined) && (intValue == data)).assertTrue();
|
H A D | DeviceKvStoreKVPromiseJsTest.js | 333 var intValue = 987654321; 334 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue).then(async (data) => { 339 expect(intValue == data).assertTrue(); 364 var intValue = Number.MAX_VALUE; 365 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue).then(async (data) => { 370 expect(intValue == data).assertTrue(); 395 var intValue = Number.MIN_VALUE; 396 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue).then(async (data) => { 401 expect(intValue == data).assertTrue();
|
/test/xts/acts/distributeddatamgr/kvStoretest/kvStorejstest/hap/entry/src/ohosTest/js/test/ |
H A D | SingleKvStoreCallbackJsunit.test.js | 246 var intValue = 987654321; 247 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue, async function (err,data) { 252 expect((err == undefined) && (intValue == data)).assertTrue(); 271 var intValue = Number.MIN_VALUE; 272 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue, async function (err,data) { 277 expect((err == undefined) && (intValue == data)).assertTrue(); 296 var intValue = Number.MAX_VALUE; 297 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue, async function (err,data) { 302 expect((err == undefined) && (intValue == data)).assertTrue();
|
H A D | DeviceKvStorePromiseJsunit.test.js | 330 var intValue = 987654321; 331 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue).then(async (data) => { 336 expect(intValue == data).assertTrue(); 360 var intValue = Number.MAX_VALUE; 361 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue).then(async (data) => { 366 expect(intValue == data).assertTrue(); 390 var intValue = Number.MIN_VALUE; 391 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue).then(async (data) => { 396 expect(intValue == data).assertTrue();
|
H A D | DeviceKvStoreCallbackJsunit.test.js | 278 var intValue = 987654321; 279 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue, async function (err,data) { 284 expect((err == undefined) && (intValue == data)).assertTrue(); 303 var intValue = Number.MIN_VALUE; 304 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue, async function (err,data) { 309 expect((err == undefined) && (intValue == data)).assertTrue(); 328 var intValue = Number.MAX_VALUE; 329 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue, async function (err,data) { 334 expect((err == undefined) && (intValue == data)).assertTrue();
|
H A D | SingleKvStorePromiseJsunit.test.js | 301 var intValue = 987654321; 302 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue).then(async (data) => { 307 expect(intValue == data).assertTrue(); 331 var intValue = Number.MAX_VALUE; 332 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue).then(async (data) => { 337 expect(intValue == data).assertTrue(); 361 var intValue = Number.MIN_VALUE; 362 await kvStore.put(KEY_TEST_INT_ELEMENT, intValue).then(async (data) => { 367 expect(intValue == data).assertTrue();
|
/test/xts/acts/multimedia/avsource/entry/src/main/cpp/ |
H A D | multimediaCore.cpp | 98 int32_t intValue = PARAM_1; variable 436 OH_AVFormat_SetIntValue(AVFormat, intKey, intValue); in MultimediaCoreAVFormatGetIntValueOne() 461 OH_AVFormat_SetIntValue(AVFormat, intKey, intValue); in MultimediaCoreAVFormatGetIntValueThree() 474 OH_AVFormat_SetIntValue(AVFormat, intKey, intValue); in MultimediaCoreAVFormatGetIntValueFour() 487 OH_AVFormat_SetIntValue(AVFormat, intKey, intValue); in MultimediaCoreAVFormatGetIntValueFive() 749 bool ReturnValue = OH_AVFormat_SetIntValue(AVFormat, intKey, intValue); in MultimediaCoreAVFormatSetIntValueOne() 760 bool ReturnValue = OH_AVFormat_SetIntValue(nullptr, intKey, intValue); in MultimediaCoreAVFormatSetIntValueTwo() 771 bool ReturnValue = OH_AVFormat_SetIntValue(AVFormat, nullptr, intValue); in MultimediaCoreAVFormatSetIntValueThree()
|
/test/xts/acts/ai/nncore/e2etest/src/ |
H A D | EndToEndTest.cpp | 158 int* intValue = reinterpret_cast<int*>(data); in SetInputData() local 160 intValue[j] = static_cast<int>(j); in SetInputData()
|
/test/xts/acts/notification/ces_standard/actsCommonEventSubscribeNDKTest/entry/src/main/cpp/ |
H A D | subscribe.cpp | 33 int intValue = OH_CommonEvent_GetIntFromParameters(parameters, "wh1", 10);
in OnReceive() local 34 OH_LOG_Print(LOG_APP, LOG_INFO, 1, "ces_test", "intValue = %{public}d", intValue);
in OnReceive()
|
/test/xts/dcts/distributeddatamgr/jstest/distributed_rdb_store/client/hap/src/main/js/test/ |
H A D | RdbStoreSyncFirstLevelJsunit.test.js | 1788 * @tc.desc Server rdbStore Insert first and synchronize, intValue = Max
1845 * @tc.desc Server rdbStore Insert first and synchronize, intValue = Min
1901 * @tc.desc Server rdbStore Insert first and synchronize, intValue = NaN
1957 * @tc.desc Server rdbStore Insert first and synchronize, intValue = POSITIVE_INFINITY
1964 let intValue = Number.POSITIVE_INFINITY;
1969 "age": intValue,
2013 * @tc.desc Server rdbStore Insert first and synchronize, intValue = NEGATIVE_INFINITY
2020 let intValue = Number.NEGATIVE_INFINITY;
2025 "age": intValue,
|
/test/xts/acts/commonlibrary/ark_runtime/ark_runtime_jsvm_test/entry/src/main/cpp/napi/ |
H A D | napi_test.cpp | 9715 int64_t intValue; in ConvertBigInt() local 9717 OH_JSVM_GetValueBigintInt64(jsVmEnv, jSVmValue, &intValue, &lossless); in ConvertBigInt() 9718 napi_create_bigint_int64(napiEnv, intValue, napiValue); in ConvertBigInt()
|
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/Dialog/ |
H A D | arkoala_api.h | 3584 void (*setBadgeParameters)(ArkUINodeHandle node, ArkUI_Int32* intValue, ArkUI_Float32* floatValue);
|