Lines Matching defs:strAttribute

555     napi_value strAttribute = nullptr;
556 ASSERT_CHECK_CALL(napi_create_string_utf8(env, testStr, strlen(testStr), &strAttribute));
557 ASSERT_CHECK_VALUE_TYPE(env, strAttribute, napi_string);
558 ASSERT_CHECK_CALL(napi_set_named_property(env, result, "strAttribute", strAttribute));
561 ASSERT_CHECK_CALL(napi_get_named_property(env, result, "strAttribute", &retStrAttribute));
2406 napi_value strAttribute = nullptr;
2407 napi_create_string_utf8(env, testStr, strlen(testStr), &strAttribute);
2408 napi_set_named_property(env, object, "strAttribute", strAttribute);
2439 auto ret = memcpy_s(names[0], strlen("strAttribute"), "strAttribute", strlen("strAttribute"));
2475 napi_value strAttribute = nullptr;
2476 napi_create_string_utf8(env, testStr, strlen(testStr), &strAttribute);
2477 napi_set_named_property(env, object, "strAttribute", strAttribute);
2487 ASSERT_CHECK_CALL(napi_delete_property(env, object, strAttribute, &testDeleted));
2493 ASSERT_CHECK_CALL(napi_set_named_property(env, object, "strAttribute", modifiedValue));
2496 napi_get_named_property(env, object, "strAttribute", &strAttribute2);
2518 auto ret = memcpy_s(names[0], strlen("strAttribute"), "strAttribute", strlen("strAttribute"));
2560 napi_value strAttribute = nullptr;
2561 napi_create_string_utf8(env, testStr, strlen(testStr), &strAttribute);
2562 napi_set_named_property(env, result, "strAttribute", strAttribute);
2583 auto ret = memcpy_s(names[0], strlen("strAttribute"), "strAttribute", strlen("strAttribute"));
2643 napi_value strAttribute = nullptr;
2644 napi_create_string_utf8(env, testStr, strlen(testStr), &strAttribute);
2645 napi_set_named_property(env, result, "strAttribute", strAttribute);
2670 ret = memcpy_s(names[2], strlen("strAttribute"), "strAttribute", strlen("strAttribute"));