Searched refs:resultLength (Results 1 – 3 of 3) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
D | builtins_function_test.cpp | 205 …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()
|
D | builtins_reflect_test.cpp | 422 JSHandle<JSTaggedValue> resultLength = in HWTEST_F_L0() local 424 ASSERT_EQ(resultLength->GetInt(), 2); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_string.cpp | 1832 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()
|