Lines Matching refs:resultValue

998     int64_t resultValue = INT_ZERO;
999 ExpectCheckCall(napi_get_value_bigint_int64(env, result, &resultValue, &lossless));
1001 EXPECT_EQ(resultValue, INT64_MAX);
1027 int64_t resultValue = INT_ZERO;
1028 ExpectCheckCall(napi_get_value_bigint_int64(env, result, &resultValue, &lossless));
1031 EXPECT_EQ(resultValue, INT64_MIN);
1077 int64_t resultValue = INT_ZERO;
1078 ExpectCheckCall(napi_get_value_bigint_int64(env, result, &resultValue, &lossless));
1080 EXPECT_EQ(resultValue, testValue);
1129 int64_t resultValue = INT_ZERO;
1130 ExpectCheckCall(napi_get_value_bigint_int64(env, result, &resultValue, &lossless));
1132 EXPECT_EQ(resultValue, INT64_MAX);
1158 int64_t resultValue = INT_ZERO;
1159 ExpectCheckCall(napi_get_value_bigint_int64(env, result, &resultValue, &lossless));
1161 EXPECT_EQ(resultValue, INT64_MIN);
1188 int64_t resultValue = INT_ZERO;
1189 ret = napi_get_value_bigint_int64(env, result, &resultValue, &lossless);
1216 int64_t resultValue = INT_ZERO;
1218 ret = napi_get_value_bigint_int64(nullptr, result, &resultValue, &lossless);
1246 int64_t resultValue = INT_ZERO;
1247 ExpectCheckCall(napi_get_value_bigint_int64(env, result, &resultValue, &lossless));
1249 EXPECT_EQ(resultValue, INT64_VALUE);
1304 int64_t resultValue = INT_ZERO;
1305 ret = napi_get_value_bigint_int64(env, result, &resultValue, nullptr);
1333 uint64_t resultValue = INT_ZERO;
1334 ExpectCheckCall(napi_get_value_bigint_uint64(env, result, &resultValue, &lossless));
1337 EXPECT_EQ(resultValue, testValue);
1363 uint64_t resultValue = INT_ONE;
1364 ExpectCheckCall(napi_get_value_bigint_uint64(env, result, &resultValue, &lossless));
1366 EXPECT_EQ(resultValue, testValue);
1411 uint64_t resultValue = INT_ONE;
1412 ExpectCheckCall(napi_get_value_bigint_uint64(env, result, &resultValue, &lossless));
1414 EXPECT_EQ(resultValue, testValue);
1462 uint64_t resultValue = INT_ZERO;
1463 ExpectCheckCall(napi_get_value_bigint_uint64(env, result, &resultValue, &lossless));
1465 EXPECT_EQ(resultValue, UINT64_MAX);
1491 uint64_t resultValue = INT_ZERO;
1492 ExpectCheckCall(napi_get_value_bigint_uint64(env, result, &resultValue, &lossless));
1494 EXPECT_EQ(resultValue, testValue);
1521 uint64_t resultValue = INT_ZERO;
1522 ret = napi_get_value_bigint_uint64(env, result, &resultValue, &lossless);
1549 uint64_t resultValue = INT_ZERO;
1550 ret = napi_get_value_bigint_uint64(nullptr, result, &resultValue, &lossless);
1578 uint64_t resultValue = INT_ONE;
1579 ExpectCheckCall(napi_get_value_bigint_uint64(env, result, &resultValue, &lossless));
1581 EXPECT_EQ(resultValue, (uint64_t)UINT64_VALUE);
1635 uint64_t resultValue = INT_ONE;
1636 ret = napi_get_value_bigint_uint64(env, result, &resultValue, nullptr);