Home
last modified time | relevance | path

Searched refs:compareList (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_list.cpp171 JSHandle<TaggedSingleList> compareList(thread, list->GetSingleList()); in Equal() local
172 return TaggedSingleList::Cast(GetSingleList().GetTaggedObject())->Equal(compareList); in Equal()
/arkcompiler/ets_runtime/ecmascript/
Dtagged_list.cpp489 JSTaggedValue TaggedSingleList::Equal(const JSHandle<TaggedSingleList> &compareList) in Equal() argument
491 int compareListLength = compareList->NumberOfNodes(); in Equal()
499 compareNode = compareList->GetNextDataIndex(compareNode); in Equal()
501 JSTaggedValue compareValue = compareList->GetElement(compareNode); in Equal()
Dtagged_list.h160 JSTaggedValue Equal(const JSHandle<TaggedSingleList> &compareList);
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_list_test.cpp128 JSTaggedValue ListEqual(JSHandle<JSAPIList> list, JSHandle<JSAPIList> compareList) in ListEqual() argument
133 callInfo->SetCallArg(0, compareList.GetTaggedValue()); in ListEqual()