/arkcompiler/ets_runtime/ecmascript/js_api/ |
D | js_api_deque.cpp | 39 uint32_t last = deque->GetLast(); in InsertFront() 60 uint32_t last = deque->GetLast(); in InsertEnd() 94 uint32_t last = GetLast(); in GetTail() 133 uint32_t last = GetLast(); in PopLast() 147 uint32_t last = GetLast(); in IsEmpty() 156 uint32_t last = GetLast(); in GetSize() 187 uint32_t last = GetLast(); in Has() 210 uint32_t lastIndex = deque->GetLast(); in OwnKeys() 229 uint32_t lastIndex = deque->GetLast(); in OwnEnumKeys()
|
D | js_api_deque_iterator.cpp | 58 uint32_t last = deque->GetLast(); in Next()
|
D | js_api_list.h | 57 JSTaggedValue GetLast();
|
D | js_api_linked_list.h | 59 JSTaggedValue GetLast();
|
D | js_api_list.cpp | 47 JSTaggedValue JSAPIList::GetLast() in GetLast() function in panda::ecmascript::JSAPIList 49 JSTaggedValue res = TaggedSingleList::Cast(GetSingleList().GetTaggedObject())->GetLast(); in GetLast()
|
D | js_api_linked_list.cpp | 165 JSTaggedValue JSAPILinkedList::GetLast() in GetLast() function in panda::ecmascript::JSAPILinkedList 167 JSTaggedValue res = TaggedDoubleList::Cast(GetDoubleList().GetTaggedObject())->GetLast(); in GetLast()
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
D | space.h | 155 return regionList_.GetLast()->GetBegin(); in GetAllocateAreaBegin() 160 return regionList_.GetLast()->GetEnd(); in GetAllocateAreaEnd() 165 return regionList_.GetLast(); in GetCurrentRegion()
|
D | space-inl.h | 47 end = regionList_.GetLast(); in EnumerateRegions()
|
D | ecma_list.h | 127 T *GetLast() const in GetLast() function
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
D | containers_deque_stub_builder.h | 37 GateRef last = GetLast(obj); in GetSize() 56 GateRef GetLast(GateRef obj) in GetLast() function
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_api_list_test.cpp | 140 EXPECT_EQ(toor->GetLast(), JSTaggedValue::Undefined()); in HWTEST_F_L0() 146 EXPECT_EQ(toor->GetLast().GetInt(), 9); in HWTEST_F_L0() 152 EXPECT_EQ(toor->GetLast().GetInt(), 99); in HWTEST_F_L0() 175 EXPECT_EQ(toor->GetLast(), JSTaggedValue::Undefined()); in HWTEST_F_L0() 181 EXPECT_EQ(toor->GetLast().GetInt(), 9); in HWTEST_F_L0() 212 EXPECT_EQ(toor->GetLast(), JSTaggedValue::Undefined()); in HWTEST_F_L0() 259 EXPECT_EQ(toor->GetLast(), JSTaggedValue::Undefined()); in HWTEST_F_L0()
|
D | js_api_linked_list_test.cpp | 149 EXPECT_EQ(toor->GetLast(), JSTaggedValue::Undefined()); in HWTEST_F_L0() 155 EXPECT_EQ(toor->GetLast().GetInt(), 9); in HWTEST_F_L0() 161 EXPECT_EQ(toor->GetLast().GetInt(), 99); in HWTEST_F_L0() 184 EXPECT_EQ(toor->GetLast(), JSTaggedValue::Undefined()); in HWTEST_F_L0() 190 EXPECT_EQ(toor->GetLast().GetInt(), 9); in HWTEST_F_L0() 221 EXPECT_EQ(toor->GetLast(), JSTaggedValue::Undefined()); in HWTEST_F_L0() 312 EXPECT_EQ(toor->GetLast(), JSTaggedValue::Undefined()); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/containers/ |
D | containers_deque.h | 30 static JSTaggedValue GetLast(EcmaRuntimeCallInfo *argv);
|
D | containers_list.h | 28 static JSTaggedValue GetLast(EcmaRuntimeCallInfo *argv);
|
D | containers_linked_list.h | 29 static JSTaggedValue GetLast(EcmaRuntimeCallInfo *argv);
|
D | containers_deque.cpp | 125 JSTaggedValue ContainersDeque::GetLast(EcmaRuntimeCallInfo *argv) in GetLast() function in panda::ecmascript::containers::ContainersDeque 128 BUILTINS_API_TRACE(argv->GetThread(), Deque, GetLast); in GetLast() 251 uint32_t last = deque->GetLast(); in ForEach()
|
D | containers_list.cpp | 129 JSTaggedValue ContainersList::GetLast(EcmaRuntimeCallInfo *argv) in GetLast() function in panda::ecmascript::containers::ContainersList 133 BUILTINS_API_TRACE(thread, List, GetLast); in GetLast() 146 return jSAPIList->GetLast(); in GetLast()
|
D | containers_linked_list.cpp | 118 JSTaggedValue ContainersLinkedList::GetLast(EcmaRuntimeCallInfo *argv) in GetLast() function in panda::ecmascript::containers::ContainersLinkedList 122 BUILTINS_API_TRACE(thread, LinkedList, GetLast); in GetLast() 135 return jsAPILinkedList->GetLast(); in GetLast()
|
D | containers_private.cpp | 924 …SetFrozenFunction(thread, dequeFuncPrototype, "getLast", ContainersDeque::GetLast, FuncLength::ZER… in InitializeDeque() 975 … SetFrozenFunction(thread, listFuncPrototype, "getLast", ContainersList::GetLast, FuncLength::ONE); in InitializeList() 1042 …SetFrozenFunction(thread, linkedListFuncPrototype, "getLast", ContainersLinkedList::GetLast, FuncL… in InitializeLinkedList()
|
/arkcompiler/ets_runtime/ecmascript/containers/tests/ |
D | containers_deque_test.cpp | 174 EXPECT_EQ(ContainersDeque::GetLast(callInfo), JSTaggedValue(i)); in HWTEST_F_L0() 313 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersDeque, GetLast); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | tagged_list.h | 67 inline JSTaggedValue GetLast() in GetLast() function
|
D | runtime_call_id.h | 953 V(Deque, GetLast) \ 1012 V(List, GetLast) \ 1035 V(LinkedList, GetLast) \
|
/arkcompiler/ets_runtime/test/fuzztest/containersdequecommon_fuzzer/ |
D | containersdequecommon_fuzzer.h | 232 ContainersDeque::GetLast(callInfo1); in ContainersDequeGetLastFuzzTest()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | bit_table.h | 536 const Entry &GetLast() const in GetLast() function
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
D | snapshot_processor.cpp | 869 reinterpret_cast<uintptr_t>(Deque::GetLast), 950 reinterpret_cast<uintptr_t>(List::GetLast), 973 reinterpret_cast<uintptr_t>(LinkedList::GetLast),
|