Home
last modified time | relevance | path

Searched refs:singleList (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_list.cpp33 JSHandle<TaggedSingleList> singleList(thread, list->GetSingleList()); in Add() local
34 JSTaggedValue newList = TaggedSingleList::Add(thread, singleList, value); in Add()
59 JSHandle<TaggedSingleList> singleList(thread, list->GetSingleList()); in Insert() local
60 int nodeLength = singleList->Length(); in Insert()
68 JSTaggedValue newList = TaggedSingleList::Insert(thread, singleList, value, index); in Insert()
76 JSHandle<TaggedSingleList> singleList(thread, list->GetSingleList()); in Set() local
77 int nodeLength = singleList->Length(); in Set()
85 TaggedSingleList::Set(thread, singleList, index, value); in Set()
92 TaggedSingleList *singleList = TaggedSingleList::Cast(GetSingleList().GetTaggedObject()); in Has() local
93 return singleList->Has(element); in Has()
[all …]
Djs_api_list_iterator.cpp45 JSHandle<TaggedSingleList> singleList(list); in Next() local
50 int length = singleList->Length(); in Next()
58 std::pair<int, JSTaggedValue> resultPair = singleList->GetByDataIndex(dataIndex); in Next()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_api_list_iterator_test.cpp86 JSTaggedValue singleList = TaggedSingleList::Create(thread); in CreateList() local
87 list->SetSingleList(thread, singleList); in CreateList()
Djs_api_list_test.cpp86 JSTaggedValue singleList = TaggedSingleList::Create(thread); in CreateList() local
87 list->SetSingleList(thread, singleList); in CreateList()
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_list.cpp48 JSTaggedValue singleList = TaggedSingleList::Create(thread); in ListConstructor() local
49 list->SetSingleList(thread, singleList); in ListConstructor()
325 JSHandle<TaggedSingleList> singleList(thread, list->GetSingleList()); in ForEach() local
333 valueNode = singleList->GetNextDataIndex(valueNode); in ForEach()
334 JSTaggedValue value = singleList->GetElement(valueNode); in ForEach()
/arkcompiler/ets_runtime/ecmascript/
Dobject_fast_operator-inl.h721 JSHandle<JSAPIList> singleList(thread, receiver); in SetContainerProperty()
722 res = JSAPIList::Set(thread, singleList, index, JSHandle<JSTaggedValue>(thread, value)); in SetContainerProperty()
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.cpp1045 JSHandle<TaggedSingleList> singleList(thread, list->GetSingleList()); in GetListValue() local
1052 valueNode = singleList->GetNextDataIndex(valueNode); in GetListValue()
1053 currentValue.Update(singleList->GetElement(valueNode)); in GetListValue()