| /arkcompiler/ets_runtime/ecmascript/js_api/ |
| D | js_api_linked_list.cpp | 27 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 …]
|
| D | js_api_list.cpp | 31 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 …]
|
| D | js_api_list_iterator.cpp | 43 JSHandle<JSTaggedValue> list(thread, iter->GetIteratedList()); in Next() local
|
| D | js_api_linked_list_iterator.cpp | 46 JSHandle<TaggedDoubleList> list(linkedList); in Next() local
|
| /arkcompiler/ets_runtime/ecmascript/containers/tests/ |
| D | containers_list_test.cpp | 66 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/ |
| D | ldmodulensbyic.js | 18 let list = ["Panda", "Lion ", "Monkey"]; variable
|
| /arkcompiler/ets_frontend/es2panda/typescript/core/ |
| D | typeRelation.cpp | 49 …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/ |
| D | js_api_list_iterator_test.cpp | 85 …JSHandle<JSAPIList> list(factory->NewJSObjectByConstructor(JSHandle<JSFunction>(constructor), cons… in CreateList() local 100 JSHandle<JSAPIList> list(thread, CreateList()); in HWTEST_F_L0() local
|
| D | js_api_list_test.cpp | 85 …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
|
| D | js_api_linked_list_test.cpp | 132 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/ |
| D | builtins_list_format.cpp | 93 JSHandle<JSTaggedValue> list = GetCallArg(argv, 0); in Format() local 119 JSHandle<JSTaggedValue> list = GetCallArg(argv, 0); in FormatToParts() local
|
| /arkcompiler/runtime_core/runtime/mem/ |
| D | rem_set-inl.h | 45 auto list = GetCardList<need_lock>(from_region); in AddRef() local 62 auto list = region_iter.second; in Clear() local
|
| /arkcompiler/ets_frontend/es2panda/typescript/ |
| D | checker.cpp | 51 void Checker::ThrowTypeError(std::initializer_list<TypeErrorMessageElement> list, const lexer::Sour… in ThrowTypeError()
|
| /arkcompiler/ets_runtime/test/moduletest/bindfunction/ |
| D | bindfunction.js | 35 function list() { function
|
| /arkcompiler/ets_runtime/test/moduletest/container/ |
| D | container_linked_list.js | 25 let list = new LinkedList(); variable
|
| D | container_list.js | 25 let list = new List(); variable
|
| /arkcompiler/runtime_core/compiler/tests/ |
| D | unit_test.h | 154 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()
|
| D | code_info_test.cpp | 64 auto list = code_info.GetVRegList(stack_map, inline_depth, GetAllocator()); in EnumerateVRegs() local
|
| /arkcompiler/ets_frontend/es2panda/typescript/types/ |
| D | typeRelation.cpp | 164 void TypeRelation::RaiseError(std::initializer_list<TypeErrorMessageElement> list, in RaiseError()
|
| /arkcompiler/ets_runtime/test/ |
| D | runtest.py | 80 def match_list_name(list, name): argument
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | free_object_list.cpp | 241 void FreeObjectList::Merge(FreeObjectList *list) in Merge()
|
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | list_test.cpp | 82 List<TestNode> list; in TEST_F() local
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | tagged_list.cpp | 74 …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/ |
| D | small_vector.h | 214 SmallVector(std::initializer_list<T> list) in SmallVector()
|
| /arkcompiler/ets_runtime/ecmascript/jspandafile/ |
| D | debug_info_extractor.cpp | 271 CVector<panda_file::File::EntityId> list; in GetMethodIdList() local
|