Home
last modified time | relevance | path

Searched refs:PopFirst (Results 1 – 17 of 17) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_deque.h32 static JSTaggedValue PopFirst(EcmaRuntimeCallInfo *argv);
Dcontainers_treeset.h44 static JSTaggedValue PopFirst(EcmaRuntimeCallInfo *argv);
Dcontainers_deque.cpp173 JSTaggedValue ContainersDeque::PopFirst(EcmaRuntimeCallInfo *argv) in PopFirst() function in panda::ecmascript::containers::ContainersDeque
176 BUILTINS_API_TRACE(argv->GetThread(), Deque, PopFirst); in PopFirst()
192 JSTaggedValue firstElement = deque->PopFirst(); in PopFirst()
Dcontainers_treeset.cpp268 JSTaggedValue ContainersTreeSet::PopFirst(EcmaRuntimeCallInfo *argv) in PopFirst() function in panda::ecmascript::containers::ContainersTreeSet
270 BUILTINS_API_TRACE(argv->GetThread(), TreeSet, PopFirst); in PopFirst()
286 return JSAPITreeSet::PopFirst(thread, set); in PopFirst()
Dcontainers_private.cpp590 …SetFrozenFunction(thread, setFuncPrototype, "popFirst", ContainersTreeSet::PopFirst, FuncLength::Z… in InitializeTreeSet()
926 …SetFrozenFunction(thread, dequeFuncPrototype, "popFirst", ContainersDeque::PopFirst, FuncLength::Z… in InitializeDeque()
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_tree_set.h42 static JSTaggedValue PopFirst(JSThread *thread, const JSHandle<JSAPITreeSet> &set);
Djs_api_deque.h64 JSTaggedValue PopFirst();
Djs_api_tree_set.cpp81 JSTaggedValue JSAPITreeSet::PopFirst(JSThread *thread, const JSHandle<JSAPITreeSet> &set) in PopFirst() function in panda::ecmascript::JSAPITreeSet
Djs_api_deque.cpp112 JSTaggedValue JSAPIDeque::PopFirst() in PopFirst() function in panda::ecmascript::JSAPIDeque
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_api_deque_test.cpp139 HWTEST_F_L0(JSAPIDequeTest, PopFirst) in HWTEST_F_L0() argument
148 EXPECT_EQ(toor->PopFirst(), JSTaggedValue::Undefined()); in HWTEST_F_L0()
155 EXPECT_EQ(toor->PopFirst(), value.GetTaggedValue()); in HWTEST_F_L0()
Djs_api_tree_set_test.cpp217 JSTaggedValue fvalue1 = JSAPITreeSet::PopFirst(thread, tset); in HWTEST_F_L0()
219 JSTaggedValue lvalue1 = JSAPITreeSet::PopFirst(thread, tset); in HWTEST_F_L0()
233 JSTaggedValue fvalue = JSAPITreeSet::PopFirst(thread, tset); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_deque_test.cpp219 HWTEST_F_L0(ContainersDequeTest, PopFirst) in HWTEST_F_L0() argument
232 EXPECT_EQ(ContainersDeque::PopFirst(callInfo), JSTaggedValue(i)); in HWTEST_F_L0()
315 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersDeque, PopFirst); in HWTEST_F_L0()
Dcontainers_treeset_test.cpp679 JSTaggedValue result = ContainersTreeSet::PopFirst(callInfo); in HWTEST_F_L0()
725 JSTaggedValue result = ContainersTreeSet::PopFirst(callInfo); in HWTEST_F_L0()
1132 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersTreeSet, PopFirst); in HWTEST_F_L0()
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetpopfirst_fuzzer/
Dcontainerstreesetpopfirst_fuzzer.cpp110 ContainersTreeSet::PopFirst(objCallInfo); in ContainersTreeSetPopFirstFuzzTest()
/arkcompiler/ets_runtime/test/fuzztest/containersdequecommon_fuzzer/
Dcontainersdequecommon_fuzzer.h337 ContainersDeque::PopFirst(callInfo1); in ContainersDequePopFirstFuzzTest()
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h942 V(TreeSet, PopFirst) \
957 V(Deque, PopFirst) \
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp855 reinterpret_cast<uintptr_t>(TreeSet::PopFirst),
871 reinterpret_cast<uintptr_t>(Deque::PopFirst),