Searched refs:callResult (Results 1 – 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/jobs/tests/ |
D | pending_job_test.cpp | 136 JSTaggedValue callResult = PendingJob::ExecutePendingJob(handlePendingJob, thread); in HWTEST_F_L0() local 137 EXPECT_EQ(callResult, JSTaggedValue::Undefined()); in HWTEST_F_L0() 172 JSTaggedValue callResult = PendingJob::ExecutePendingJob(handlePendingJob, thread); in HWTEST_F_L0() local 173 EXPECT_EQ(callResult, JSTaggedValue::Undefined()); in HWTEST_F_L0() 206 JSTaggedValue callResult = PendingJob::ExecutePendingJob(handlePendingJob, thread); in HWTEST_F_L0() local 207 EXPECT_EQ(callResult, JSTaggedValue::Undefined()); in HWTEST_F_L0() 255 JSTaggedValue callResult = PendingJob::ExecutePendingJob(handlePendingJob, thread); in HWTEST_F_L0() local 256 EXPECT_EQ(callResult, JSTaggedValue::Undefined()); in HWTEST_F_L0() 301 JSTaggedValue callResult = PendingJob::ExecutePendingJob(handlePendingJob, thread); in HWTEST_F_L0() local 302 EXPECT_EQ(callResult, JSTaggedValue::Undefined()); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_stable_array.cpp | 316 JSTaggedValue callResult = base::BuiltinsBase::GetTaggedBoolean(false); in HandleFindIndexOfStable() local 328 callResult = JSFunction::Call(info); in HandleFindIndexOfStable() 329 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, callResult); in HandleFindIndexOfStable() 330 if (callResult.ToBoolean()) { in HandleFindIndexOfStable() 331 return callResult; in HandleFindIndexOfStable() 341 return callResult; in HandleFindIndexOfStable() 344 return callResult; in HandleFindIndexOfStable() 353 JSTaggedValue callResult = base::BuiltinsBase::GetTaggedBoolean(false); in HandleFindLastIndexOfStable() local 365 callResult = JSFunction::Call(info); in HandleFindLastIndexOfStable() 366 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, callResult); in HandleFindLastIndexOfStable() [all …]
|
D | tagged_tree.h | 150 JSTaggedValue callResult = JSFunction::Call(info); in EntryCompare() local 153 if (callResult.IsInt()) { in EntryCompare() 154 compareResult = callResult.GetInt(); in EntryCompare() 156 JSHandle<JSTaggedValue> resultHandle(thread, callResult); in EntryCompare()
|
/arkcompiler/ets_runtime/ecmascript/base/ |
D | array_helper.cpp | 92 JSTaggedValue callResult = JSFunction::Call(info); in SortCompare() local 94 if (callResult.IsInt()) { in SortCompare() 95 return callResult.GetInt(); in SortCompare() 97 JSHandle<JSTaggedValue> testResult(thread, callResult); in SortCompare()
|
D | typed_array_helper.cpp | 609 JSTaggedValue callResult = JSFunction::Call(info); in SortCompare() local 614 JSHandle<JSTaggedValue> testResult(thread, callResult); in SortCompare()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_array.cpp | 235 JSTaggedValue callResult = JSFunction::Call(info); in From() local 238 mapValue.Update(callResult); in From() 304 JSTaggedValue callResult = JSFunction::Call(info); in From() local 306 mapValue.Update(callResult); in From() 701 JSTaggedValue callResult = GetTaggedBoolean(true); in Every() local 703 …callResult = JSStableArray::HandleEveryOfStable(thread, thisObjHandle, callbackFnHandle, thisArgHa… in Every() 705 if (!callResult.ToBoolean()) { in Every() 722 callResult = JSFunction::Call(info); in Every() 724 if (!callResult.ToBoolean()) { in Every() 896 JSTaggedValue callResult = GetTaggedBoolean(true); in Filter() local [all …]
|
D | builtins_typedarray.cpp | 236 JSTaggedValue callResult = JSFunction::Call(info); in From() local 238 mapValue.Update(callResult); in From() 295 JSTaggedValue callResult = JSFunction::Call(info); in From() local 297 mapValue = JSHandle<JSTaggedValue>(thread, callResult); in From() 536 JSTaggedValue callResult = JSFunction::Call(info); in Every() local 538 bool boolResult = callResult.ToBoolean(); in Every() 615 JSTaggedValue callResult = JSFunction::Call(info); in Filter() local 617 if (callResult.ToBoolean()) { in Filter() 950 JSTaggedValue callResult = JSFunction::Call(info); in Map() local 951 mapValue.Update(callResult); in Map()
|