Home
last modified time | relevance | path

Searched refs:resultLength (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_function_test.cpp205 …JSHandle<JSTaggedValue> resultLength(JSObject::GetProperty(thread, resultFuncHandle, lengthKey).Ge… in HWTEST_F_L0() local
206 ASSERT_EQ(JSTaggedValue::ToNumber(thread, resultLength).GetNumber(), 2.0); in HWTEST_F_L0()
260 …JSHandle<JSTaggedValue> resultLength(JSObject::GetProperty(thread, resultFuncHandle, lengthKey).Ge… in HWTEST_F_L0() local
262 ASSERT_EQ(JSTaggedValue::ToNumber(thread, resultLength).GetNumber(), 3.0); in HWTEST_F_L0()
316 …JSHandle<JSTaggedValue> resultLength(JSObject::GetProperty(thread, resultFuncHandle, lengthKey).Ge… in HWTEST_F_L0() local
318 ASSERT_EQ(JSTaggedValue::ToNumber(thread, resultLength).GetNumber(), 3.0); in HWTEST_F_L0()
Dbuiltins_reflect_test.cpp422 JSHandle<JSTaggedValue> resultLength = in HWTEST_F_L0() local
424 ASSERT_EQ(resultLength->GetInt(), 2); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_string.cpp1832 int32_t resultLength = std::min(std::max(end, 0), size - start); in SubStr() local
1835 if (resultLength <= 0) { in SubStr()
1838 …ggedValue(EcmaStringAccessor::FastSubString(thread->GetEcmaVM(), thisString, start, resultLength)); in SubStr()