/arkcompiler/ets_runtime/ecmascript/containers/ |
D | containers_deque.h | 32 static JSTaggedValue PopFirst(EcmaRuntimeCallInfo *argv);
|
D | containers_treeset.h | 44 static JSTaggedValue PopFirst(EcmaRuntimeCallInfo *argv);
|
D | containers_deque.cpp | 173 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()
|
D | containers_treeset.cpp | 268 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()
|
D | containers_private.cpp | 590 …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/ |
D | js_api_tree_set.h | 42 static JSTaggedValue PopFirst(JSThread *thread, const JSHandle<JSAPITreeSet> &set);
|
D | js_api_deque.h | 64 JSTaggedValue PopFirst();
|
D | js_api_tree_set.cpp | 81 JSTaggedValue JSAPITreeSet::PopFirst(JSThread *thread, const JSHandle<JSAPITreeSet> &set) in PopFirst() function in panda::ecmascript::JSAPITreeSet
|
D | js_api_deque.cpp | 112 JSTaggedValue JSAPIDeque::PopFirst() in PopFirst() function in panda::ecmascript::JSAPIDeque
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_api_deque_test.cpp | 139 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()
|
D | js_api_tree_set_test.cpp | 217 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/ |
D | containers_deque_test.cpp | 219 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()
|
D | containers_treeset_test.cpp | 679 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/ |
D | containerstreesetpopfirst_fuzzer.cpp | 110 ContainersTreeSet::PopFirst(objCallInfo); in ContainersTreeSetPopFirstFuzzTest()
|
/arkcompiler/ets_runtime/test/fuzztest/containersdequecommon_fuzzer/ |
D | containersdequecommon_fuzzer.h | 337 ContainersDeque::PopFirst(callInfo1); in ContainersDequePopFirstFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | runtime_call_id.h | 942 V(TreeSet, PopFirst) \ 957 V(Deque, PopFirst) \
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
D | snapshot_processor.cpp | 855 reinterpret_cast<uintptr_t>(TreeSet::PopFirst), 871 reinterpret_cast<uintptr_t>(Deque::PopFirst),
|