Searched refs:typeLen (Results 1 - 1 of 1) sorted by relevance
/commonlibrary/ets_utils/js_util_module/util/ |
H A D | native_module_util.cpp | 361 size_t typeLen = 0;
in TextdecoderConstructor() local 368 napi_get_value_string_utf8(env, argv, nullptr, 0, &typeLen);
in TextdecoderConstructor() 369 if (typeLen > 0) {
in TextdecoderConstructor() 370 type = ApplyMemory(typeLen);
in TextdecoderConstructor() 372 napi_get_value_string_utf8(env, argv, type, typeLen + 1, &typeLen);
in TextdecoderConstructor() 378 napi_get_value_string_utf8(env, argvArr[0], nullptr, 0, &typeLen);
in TextdecoderConstructor() 379 if (typeLen > 0) {
in TextdecoderConstructor() 380 type = ApplyMemory(typeLen);
in TextdecoderConstructor() 382 napi_get_value_string_utf8(env, argvArr[0], type, typeLen in TextdecoderConstructor() [all...] |
Completed in 4 milliseconds