Home
last modified time | relevance | path

Searched refs:GetLast (Results 1 - 25 of 39) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/js_api/
H A Djs_api_deque.cpp33 uint32_t last = deque->GetLast(); in InsertFront()
54 uint32_t last = deque->GetLast(); in InsertEnd()
88 uint32_t last = GetLast(); in GetTail()
127 uint32_t last = GetLast(); in PopLast()
141 uint32_t last = GetLast(); in IsEmpty()
150 uint32_t last = GetLast(); in GetSize()
184 uint32_t last = GetLast(); in Has()
207 uint32_t lastIndex = deque->GetLast(); in OwnKeys()
226 uint32_t lastIndex = deque->GetLast(); in OwnEnumKeys()
H A Djs_api_deque_iterator.cpp52 uint32_t last = deque->GetLast(); in Next()
H A Djs_api_linked_list.h59 JSTaggedValue GetLast();
H A Djs_api_list.h82 JSTaggedValue GetLast();
H A Djs_api_linked_list.cpp164 JSTaggedValue JSAPILinkedList::GetLast() in GetLast() function in panda::ecmascript::JSAPILinkedList
166 JSTaggedValue res = TaggedDoubleList::Cast(GetDoubleList().GetTaggedObject())->GetLast(); in GetLast()
H A Djs_api_list.cpp39 JSTaggedValue JSAPIList::GetLast() in GetLast() function in panda::ecmascript::JSAPIList
41 JSTaggedValue res = TaggedSingleList::Cast(GetSingleList().GetTaggedObject())->GetLast(); in GetLast()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H A Dcontainers_deque_stub_builder.h37 GateRef last = GetLast(obj); in GetSize()
56 GateRef GetLast(GateRef obj) in GetLast() function in panda::ecmascript::kungfu::ContainersDequeStubBuilder
/arkcompiler/ets_runtime/ecmascript/mem/
H A Dspace.h210 return regionList_.GetLast()->GetBegin(); in GetAllocateAreaBegin()
215 return regionList_.GetLast()->GetEnd(); in GetAllocateAreaEnd()
220 return regionList_.GetLast(); in GetCurrentRegion()
H A Dspace-inl.h47 end = regionList_.GetLast(); in EnumerateRegions()
H A Decma_list.h127 T *GetLast() const in GetLast() function in panda::ecmascript::EcmaList
/arkcompiler/ets_runtime/ecmascript/containers/
H A Dcontainers_deque.h30 static JSTaggedValue GetLast(EcmaRuntimeCallInfo *argv);
H A Dcontainers_linked_list.h29 static JSTaggedValue GetLast(EcmaRuntimeCallInfo *argv);
H A Dcontainers_list.h28 static JSTaggedValue GetLast(EcmaRuntimeCallInfo *argv);
H A Dcontainers_deque.cpp118 JSTaggedValue ContainersDeque::GetLast(EcmaRuntimeCallInfo *argv) in GetLast() function in panda::ecmascript::containers::ContainersDeque
121 BUILTINS_API_TRACE(argv->GetThread(), Deque, GetLast); in GetLast()
244 uint32_t last = deque->GetLast(); in ForEach()
H A Dcontainers_list.cpp129 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()
H A Dcontainers_linked_list.cpp114 JSTaggedValue ContainersLinkedList::GetLast(EcmaRuntimeCallInfo *argv) in GetLast() function in panda::ecmascript::containers::ContainersLinkedList
118 BUILTINS_API_TRACE(thread, LinkedList, GetLast); in GetLast()
131 return jsAPILinkedList->GetLast(); in GetLast()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dlabel_creation.cpp47 DEBUG_ASSERT(cgFunc->GetFunction().GetBody()->GetLast() == endLabel, "last stmt must be a endLabel"); in CreateStartEndLabel()
/arkcompiler/runtime_core/static_core/compiler/code_info/
H A Dcode_info_builder.cpp61 ASSERT(stackMaps_.GetSize() == 0 || npc >= stackMaps_.GetLast()[StackMap::COLUMN_NATIVE_PC]); in BeginStackMap()
77 ASSERT(currentStackMap_[StackMap::COLUMN_NATIVE_PC] >= stackMaps_.GetLast()[StackMap::COLUMN_NATIVE_PC]); in BeginStackMap()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
H A Dmir_lower.h44 return OpCodeNoFallThrough(ifStmt.GetThenPart()->GetLast()->GetOpCode()); in IfStmtNoFallThrough()
/arkcompiler/ets_runtime/ecmascript/tests/
H A Decma_test_common.h273 EXPECT_EQ(toor->GetLast(), JSTaggedValue::Undefined()); in ListGetLastCommon()
279 EXPECT_EQ(toor->GetLast().GetInt(), g_numberNine); in ListGetLastCommon()
315 EXPECT_EQ(toor->GetLast().GetInt(), g_nintyNine); in InsertAndGetLastCommon()
336 EXPECT_EQ(toor->GetLast(), JSTaggedValue::Undefined()); in ListRemoveCommon()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/
H A Dlower.cpp271 CHECK_FATAL(&newCall == blk->GetLast() || newCall.GetNext() == blk->GetLast(), ""); in GenBlockNode()
272 dStmt = (&newCall == blk->GetLast()) ? nullptr : blk->GetLast(); in GenBlockNode()
648 CHECK_FATAL(func.GetBody()->GetLast() == prev, "make sure the return value of GetLast equal prev"); in CleanupBranches()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
H A Dcontainers_deque_test.cpp174 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/
H A Dtagged_list.h65 inline JSTaggedValue GetLast() in GetLast() function in panda::ecmascript::TaggedList
H A Druntime_call_id.h1125 V(Deque, GetLast) \
1184 V(List, GetLast) \
1207 V(LinkedList, GetLast) \
/arkcompiler/ets_runtime/test/fuzztest/containersdequecommon_fuzzer/
H A Dcontainersdequecommon_fuzzer.h236 ContainersDeque::GetLast(callInfo1); in ContainersDequeGetLastFuzzTest()

Completed in 15 milliseconds

12