Home
last modified time | relevance | path

Searched defs:list (Results 1 – 25 of 38) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_linked_list.cpp27 JSTaggedValue JSAPILinkedList::Insert(JSThread *thread, const JSHandle<JSAPILinkedList> &list, in Insert()
52 …le<JSAPILinkedList> JSAPILinkedList::Clone(JSThread *thread, const JSHandle<JSAPILinkedList> &list) in Clone()
70 JSTaggedValue JSAPILinkedList::RemoveFirst(JSThread *thread, const JSHandle<JSAPILinkedList> &list) in RemoveFirst()
81 JSTaggedValue JSAPILinkedList::RemoveLast(JSThread *thread, const JSHandle<JSAPILinkedList> &list) in RemoveLast()
92 JSTaggedValue JSAPILinkedList::RemoveByIndex(JSThread *thread, JSHandle<JSAPILinkedList> &list, con… in RemoveByIndex()
117 JSTaggedValue JSAPILinkedList::RemoveFirstFound(JSThread *thread, JSHandle<JSAPILinkedList> &list, in RemoveFirstFound()
129 JSTaggedValue JSAPILinkedList::RemoveLastFound(JSThread *thread, JSHandle<JSAPILinkedList> &list, in RemoveLastFound()
141 void JSAPILinkedList::Add(JSThread *thread, const JSHandle<JSAPILinkedList> &list, const JSHandle<J… in Add()
148 void JSAPILinkedList::AddFirst(JSThread *thread, const JSHandle<JSAPILinkedList> &list, in AddFirst()
174 JSTaggedValue JSAPILinkedList::Set(JSThread *thread, const JSHandle<JSAPILinkedList> &list, in Set()
[all …]
Djs_api_list.cpp31 void JSAPIList::Add(JSThread *thread, const JSHandle<JSAPIList> &list, const JSHandle<JSTaggedValue… in Add()
56 JSTaggedValue JSAPIList::Insert(JSThread *thread, const JSHandle<JSAPIList> &list, const JSHandle<J… in Insert()
73 JSTaggedValue JSAPIList::Set(JSThread *thread, const JSHandle<JSAPIList> &list, in Set()
131 JSTaggedValue JSAPIList::RemoveByIndex(JSThread *thread, const JSHandle<JSAPIList> &list, const int… in RemoveByIndex()
156 JSHandle<JSAPIList> list = JSHandle<JSAPIList>::Cast(thisHandle); in ReplaceAllElements() local
164 JSHandle<JSAPIList> list = JSHandle<JSAPIList>::Cast(thisHandle); in Sort() local
169 JSTaggedValue JSAPIList::Equal(JSThread *thread, const JSHandle<JSAPIList> &list) in Equal()
175 JSTaggedValue JSAPIList::ConvertToArray(const JSThread *thread, const JSHandle<JSAPIList> &list) in ConvertToArray()
181 JSTaggedValue JSAPIList::GetSubList(JSThread *thread, const JSHandle<JSAPIList> &list, in GetSubList()
210 JSHandle<TaggedArray> JSAPIList::OwnKeys(JSThread *thread, const JSHandle<JSAPIList> &list) in OwnKeys()
[all …]
Djs_api_list_iterator.cpp43 JSHandle<JSTaggedValue> list(thread, iter->GetIteratedList()); in Next() local
Djs_api_linked_list_iterator.cpp46 JSHandle<TaggedDoubleList> list(linkedList); in Next() local
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_list_test.cpp66 JSHandle<JSTaggedValue> list = GetCallArg(argv, 2); // 2 means the secode arg in TestForEachFunc() local
111 JSHandle<JSAPIList> list(thread, result); in CreateJSAPIList() local
115 JSTaggedValue ListAdd(JSHandle<JSAPIList> list, JSTaggedValue value) in ListAdd()
128 JSTaggedValue ListEqual(JSHandle<JSAPIList> list, JSHandle<JSAPIList> compareList) in ListEqual()
157 JSHandle<JSAPIList> list(thread, result); in HWTEST_F_L0() local
172 JSHandle<JSAPIList> list = CreateJSAPIList(); in HWTEST_F_L0() local
216 JSHandle<JSAPIList> list = CreateJSAPIList(); in HWTEST_F_L0() local
262 JSHandle<JSAPIList> list = CreateJSAPIList(); in HWTEST_F_L0() local
307 JSHandle<JSAPIList> list = CreateJSAPIList(); in HWTEST_F_L0() local
349 JSHandle<JSAPIList> list = CreateJSAPIList(); in HWTEST_F_L0() local
[all …]
/arkcompiler/ets_runtime/test/moduletest/ldmodulensbyic/
Dldmodulensbyic.js18 let list = ["Panda", "Lion ", "Monkey"]; variable
/arkcompiler/ets_frontend/es2panda/typescript/core/
DtypeRelation.cpp49 …ker::IsTypeIdenticalTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> … in IsTypeIdenticalTo()
74 …er::IsTypeAssignableTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> … in IsTypeAssignableTo()
99 …er::IsTypeComparableTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> … in IsTypeComparableTo()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_api_list_iterator_test.cpp85 …JSHandle<JSAPIList> list(factory->NewJSObjectByConstructor(JSHandle<JSFunction>(constructor), cons… in CreateList() local
100 JSHandle<JSAPIList> list(thread, CreateList()); in HWTEST_F_L0() local
Djs_api_list_test.cpp85 …JSHandle<JSAPIList> list(factory->NewJSObjectByConstructor(JSHandle<JSFunction>(constructor), cons… in CreateList() local
94 JSAPIList *list = CreateList(); in HWTEST_F_L0() local
241 JSHandle<JSAPIList> list(thread, CreateList()); in HWTEST_F_L0() local
405 JSHandle<JSAPIList> list(thread, CreateList()); in HWTEST_F_L0() local
Djs_api_linked_list_test.cpp132 JSHandle<JSAPILinkedList> list(thread, CreateLinkedList()); in HWTEST_F_L0() local
294 JSHandle<JSAPILinkedList> list(thread, linkedlist); in HWTEST_F_L0() local
418 JSHandle<JSAPILinkedList> list(thread, linkedlist); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_list_format.cpp93 JSHandle<JSTaggedValue> list = GetCallArg(argv, 0); in Format() local
119 JSHandle<JSTaggedValue> list = GetCallArg(argv, 0); in FormatToParts() local
/arkcompiler/runtime_core/runtime/mem/
Drem_set-inl.h45 auto list = GetCardList<need_lock>(from_region); in AddRef() local
62 auto list = region_iter.second; in Clear() local
/arkcompiler/ets_frontend/es2panda/typescript/
Dchecker.cpp51 void Checker::ThrowTypeError(std::initializer_list<TypeErrorMessageElement> list, const lexer::Sour… in ThrowTypeError()
/arkcompiler/ets_runtime/test/moduletest/bindfunction/
Dbindfunction.js35 function list() { function
/arkcompiler/ets_runtime/test/moduletest/container/
Dcontainer_linked_list.js25 let list = new LinkedList(); variable
Dcontainer_list.js25 let list = new List(); variable
/arkcompiler/runtime_core/compiler/tests/
Dunit_test.h154 bool CheckInputs(Inst &inst, std::initializer_list<size_t> list) const in CheckInputs()
168 bool CheckUsers(Inst &inst, std::initializer_list<int> list) const in CheckUsers()
Dcode_info_test.cpp64 auto list = code_info.GetVRegList(stack_map, inline_depth, GetAllocator()); in EnumerateVRegs() local
/arkcompiler/ets_frontend/es2panda/typescript/types/
DtypeRelation.cpp164 void TypeRelation::RaiseError(std::initializer_list<TypeErrorMessageElement> list, in RaiseError()
/arkcompiler/ets_runtime/test/
Druntest.py80 def match_list_name(list, name): argument
/arkcompiler/ets_runtime/ecmascript/mem/
Dfree_object_list.cpp241 void FreeObjectList::Merge(FreeObjectList *list) in Merge()
/arkcompiler/runtime_core/libpandabase/tests/
Dlist_test.cpp82 List<TestNode> list; in TEST_F() local
/arkcompiler/ets_runtime/ecmascript/
Dtagged_list.cpp74 …JSHandle<Derived> list = Create(thread, newCapacity < DEFAULT_ARRAY_LENGHT ? DEFAULT_ARRAY_LENGHT … in GrowCapacity() local
83 JSHandle<Derived> list = GrowCapacity(thread, taggedList); in AddNode() local
114 …Value TaggedList<Derived>::TaggedListToArray(const JSThread *thread, const JSHandle<Derived> &list) in TaggedListToArray()
130 JSHandle<TaggedArray> TaggedList<Derived>::OwnKeys(JSThread *thread, const JSHandle<Derived> &list) in OwnKeys()
/arkcompiler/runtime_core/libpandabase/utils/
Dsmall_vector.h214 SmallVector(std::initializer_list<T> list) in SmallVector()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Ddebug_info_extractor.cpp271 CVector<panda_file::File::EntityId> list; in GetMethodIdList() local

12