Home
last modified time | relevance | path

Searched refs:GetFirst (Results 1 - 25 of 53) sorted by relevance

123

/arkcompiler/ets_runtime/ecmascript/js_api/
H A Djs_api_deque.cpp32 uint32_t first = deque->GetFirst(); in InsertFront()
53 uint32_t first = deque->GetFirst(); in InsertEnd()
77 return elements->Get(GetFirst()); in GetFront()
111 uint32_t first = GetFirst(); in PopFirst()
140 uint32_t first = GetFirst(); in IsEmpty()
149 uint32_t first = GetFirst(); in GetSize()
160 uint32_t first = GetFirst(); in Get()
174 uint32_t first = GetFirst(); in Set()
183 uint32_t first = GetFirst(); in Has()
206 uint32_t firstIndex = deque->GetFirst(); in OwnKeys()
[all...]
H A Djs_api_deque_iterator.cpp51 uint32_t first = deque->GetFirst(); in Next()
H A Djs_api_linked_list.h58 JSTaggedValue GetFirst();
H A Djs_api_list.h81 JSTaggedValue GetFirst();
H A Djs_api_queue.h33 static JSTaggedValue GetFirst(JSThread *thread, const JSHandle<JSAPIQueue> &queue);
H A Djs_api_linked_list.cpp155 JSTaggedValue JSAPILinkedList::GetFirst() in GetFirst() function in panda::ecmascript::JSAPILinkedList
157 JSTaggedValue res = TaggedDoubleList::Cast(GetDoubleList().GetTaggedObject())->GetFirst(); in GetFirst()
H A Djs_api_list.cpp30 JSTaggedValue JSAPIList::GetFirst() in GetFirst() function in panda::ecmascript::JSAPIList
32 JSTaggedValue res = TaggedSingleList::Cast(GetSingleList().GetTaggedObject())->GetFirst(); in GetFirst()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H A Dcontainers_deque_stub_builder.h36 GateRef first = GetFirst(obj); in GetSize()
46 GateRef first = GetFirst(obj); in Get()
51 GateRef GetFirst(GateRef obj) in GetFirst() function in panda::ecmascript::kungfu::ContainersDequeStubBuilder
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
H A Dmir_lower.cpp112 auto *stmt = block.GetFirst(); in LowerBuiltinExpect()
135 bool thenEmpty = (ifStmt.GetThenPart() == nullptr) || (ifStmt.GetThenPart()->GetFirst() == nullptr); in CreateCondGotoStmt()
212 bool thenEmpty = (ifStmt.GetThenPart() == nullptr) || (ifStmt.GetThenPart()->GetFirst() == nullptr); in LowerIfStmt()
213 bool elseEmpty = (ifStmt.GetElsePart() == nullptr) || (ifStmt.GetElsePart()->GetFirst() == nullptr); in LowerIfStmt()
330 if (block.GetFirst() == nullptr) { in LowerBlock()
334 StmtNode *nextStmt = block.GetFirst(); in LowerBlock()
387 if (block.GetFirst() == nullptr) { in LowerCandCior()
390 StmtNode *nextStmt = block.GetFirst(); in LowerCandCior()
/arkcompiler/ets_runtime/ecmascript/containers/
H A Dcontainers_queue.h28 static JSTaggedValue GetFirst(EcmaRuntimeCallInfo *argv);
H A Dcontainers_deque.h29 static JSTaggedValue GetFirst(EcmaRuntimeCallInfo *argv);
H A Dcontainers_linked_list.h28 static JSTaggedValue GetFirst(EcmaRuntimeCallInfo *argv);
H A Dcontainers_list.h27 static JSTaggedValue GetFirst(EcmaRuntimeCallInfo *argv);
H A Dcontainers_deque.cpp95 JSTaggedValue ContainersDeque::GetFirst(EcmaRuntimeCallInfo *argv) in GetFirst() function in panda::ecmascript::containers::ContainersDeque
98 BUILTINS_API_TRACE(argv->GetThread(), Deque, GetFirst); in GetFirst()
243 uint32_t first = deque->GetFirst(); in ForEach()
H A Dcontainers_queue.cpp70 JSTaggedValue ContainersQueue::GetFirst(EcmaRuntimeCallInfo *argv) in GetFirst() function in panda::ecmascript::containers::ContainersQueue
88 JSTaggedValue value = JSAPIQueue::GetFirst(thread, JSHandle<JSAPIQueue>::Cast(self)); in GetFirst()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dmemlayout.cpp34 StmtNode *stmt = mirFunction->GetBody()->GetFirst(); in FindLargestActualArea()
/arkcompiler/ets_runtime/ecmascript/tests/
H A Djs_api_queue_test.cpp81 // test GetFirst and pop of empty queue in HWTEST_F_L0()
82 EXPECT_EQ(JSAPIQueue::GetFirst(thread, jsQueue), JSTaggedValue::Undefined()); in HWTEST_F_L0()
92 // test GetFirst in HWTEST_F_L0()
97 JSHandle<JSTaggedValue>(thread, JSAPIQueue::GetFirst(thread, jsQueue)), value)); in HWTEST_F_L0()
H A Decma_test_common.h274 EXPECT_EQ(toor->GetFirst(), JSTaggedValue::Undefined()); in ListGetLastCommon()
280 EXPECT_EQ(toor->GetFirst().GetInt(), 1); in ListGetLastCommon()
320 EXPECT_EQ(toor->GetFirst().GetInt(), g_hundred); in InsertAndGetLastCommon()
337 EXPECT_EQ(toor->GetFirst(), JSTaggedValue::Undefined()); in ListRemoveCommon()
H A Djs_api_linked_list_test.cpp82 EXPECT_EQ(list->GetFirst().GetInt(), 2); in HWTEST_F_L0()
173 EXPECT_TRUE(list->GetFirst().IsUndefined()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/mem/
H A Dspace-inl.h42 Region *current = regionList_.GetFirst(); in EnumerateRegions()
H A Decma_list.h122 T *GetFirst() const in GetFirst() function in panda::ecmascript::EcmaList
H A Dspace.h225 return regionList_.GetFirst(); in GetFirstRegion()
H A Djit_fort.h45 return regionList_.GetFirst(); in GetRegionList()
/arkcompiler/ets_runtime/test/fuzztest/containersqueuegetfirst_fuzzer/
H A Dcontainersqueuegetfirst_fuzzer.cpp115 ContainersQueue::GetFirst(callInfo); in ContainersQueueGetFirstFuzzTest()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
H A Dcontainers_deque_test.cpp156 EXPECT_EQ(ContainersDeque::GetFirst(callInfo), JSTaggedValue(i)); in HWTEST_F_L0()
312 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersDeque, GetFirst); in HWTEST_F_L0()

Completed in 12 milliseconds

123