| D | napi_test.cpp | 1426 napi_value testString = nullptr; in strictEquals() local 1427 napi_create_string_utf8(env, testStringStr, strlen(testStringStr), &testString); in strictEquals() 1429 napi_strict_equals(env, testString, testString, &isStrictEquals); in strictEquals() 6578 napi_value testString = nullptr; in strictEqualsFirstValueNull() local 6579 napi_create_string_utf8(env, testStringStr, strlen(testStringStr), &testString); in strictEqualsFirstValueNull() 6581 napi_status status = napi_strict_equals(env, nullptr, testString, &isStrictEquals); in strictEqualsFirstValueNull() 6591 napi_value testString = nullptr; in strictEqualsSecondValueNull() local 6592 napi_create_string_utf8(env, testStringStr, strlen(testStringStr), &testString); in strictEqualsSecondValueNull() 6594 napi_status status = napi_strict_equals(env, testString, nullptr, &isStrictEquals); in strictEqualsSecondValueNull() 6604 napi_value testString = nullptr; in strictEqualsResultNull() local [all …]
|