/arkcompiler/ets_runtime/ecmascript/js_api/ |
H A D | js_api_deque.cpp | 32 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 D | js_api_deque_iterator.cpp | 51 uint32_t first = deque->GetFirst(); in Next()
|
H A D | js_api_linked_list.h | 58 JSTaggedValue GetFirst();
|
H A D | js_api_list.h | 81 JSTaggedValue GetFirst();
|
H A D | js_api_queue.h | 33 static JSTaggedValue GetFirst(JSThread *thread, const JSHandle<JSAPIQueue> &queue);
|
H A D | js_api_linked_list.cpp | 155 JSTaggedValue JSAPILinkedList::GetFirst() in GetFirst() function in panda::ecmascript::JSAPILinkedList 157 JSTaggedValue res = TaggedDoubleList::Cast(GetDoubleList().GetTaggedObject())->GetFirst(); in GetFirst()
|
H A D | js_api_list.cpp | 30 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 D | containers_deque_stub_builder.h | 36 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 D | mir_lower.cpp | 112 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 D | containers_queue.h | 28 static JSTaggedValue GetFirst(EcmaRuntimeCallInfo *argv);
|
H A D | containers_deque.h | 29 static JSTaggedValue GetFirst(EcmaRuntimeCallInfo *argv);
|
H A D | containers_linked_list.h | 28 static JSTaggedValue GetFirst(EcmaRuntimeCallInfo *argv);
|
H A D | containers_list.h | 27 static JSTaggedValue GetFirst(EcmaRuntimeCallInfo *argv);
|
H A D | containers_deque.cpp | 95 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 D | containers_queue.cpp | 70 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 D | memlayout.cpp | 34 StmtNode *stmt = mirFunction->GetBody()->GetFirst(); in FindLargestActualArea()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_api_queue_test.cpp | 81 // 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 D | ecma_test_common.h | 274 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 D | js_api_linked_list_test.cpp | 82 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 D | space-inl.h | 42 Region *current = regionList_.GetFirst(); in EnumerateRegions()
|
H A D | ecma_list.h | 122 T *GetFirst() const in GetFirst() function in panda::ecmascript::EcmaList
|
H A D | space.h | 225 return regionList_.GetFirst(); in GetFirstRegion()
|
H A D | jit_fort.h | 45 return regionList_.GetFirst(); in GetRegionList()
|
/arkcompiler/ets_runtime/test/fuzztest/containersqueuegetfirst_fuzzer/ |
H A D | containersqueuegetfirst_fuzzer.cpp | 115 ContainersQueue::GetFirst(callInfo); in ContainersQueueGetFirstFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/containers/tests/ |
H A D | containers_deque_test.cpp | 156 EXPECT_EQ(ContainersDeque::GetFirst(callInfo), JSTaggedValue(i)); in HWTEST_F_L0() 312 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersDeque, GetFirst); in HWTEST_F_L0()
|