/arkcompiler/ets_runtime/ecmascript/containers/ |
H A D | containers_deque.h | 32 static JSTaggedValue PopFirst(EcmaRuntimeCallInfo *argv);
|
H A D | containers_treeset.h | 44 static JSTaggedValue PopFirst(EcmaRuntimeCallInfo *argv);
|
H A D | containers_deque.cpp | 166 JSTaggedValue ContainersDeque::PopFirst(EcmaRuntimeCallInfo *argv) in PopFirst() function in panda::ecmascript::containers::ContainersDeque 169 BUILTINS_API_TRACE(argv->GetThread(), Deque, PopFirst); in PopFirst() 185 JSTaggedValue firstElement = deque->PopFirst(); in PopFirst()
|
H A D | containers_treeset.cpp | 250 JSTaggedValue ContainersTreeSet::PopFirst(EcmaRuntimeCallInfo *argv) in PopFirst() function in panda::ecmascript::containers::ContainersTreeSet 252 BUILTINS_API_TRACE(argv->GetThread(), TreeSet, PopFirst); in PopFirst() 268 return JSAPITreeSet::PopFirst(thread, set); in PopFirst()
|
H A D | containers_private.cpp | 588 SetFrozenFunction(thread, setFuncPrototype, "popFirst", ContainersTreeSet::PopFirst, FuncLength::ZERO); in InitializeTreeSet() 997 SetFrozenFunction(thread, dequeFuncPrototype, "popFirst", ContainersDeque::PopFirst, FuncLength::ZERO); in InitializeDeque()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_api_deque_test.cpp | 93 HWTEST_F_L0(JSAPIDequeTest, PopFirst) in HWTEST_F_L0() 101 // test PopFirst of empty deque in HWTEST_F_L0() 102 EXPECT_EQ(toor->PopFirst(), JSTaggedValue::Undefined()); in HWTEST_F_L0() 109 EXPECT_EQ(toor->PopFirst(), value.GetTaggedValue()); in HWTEST_F_L0()
|
H A D | js_api_tree_set_test.cpp | 173 JSTaggedValue fvalue1 = JSAPITreeSet::PopFirst(thread, tset); in HWTEST_F_L0() 175 JSTaggedValue lvalue1 = JSAPITreeSet::PopFirst(thread, tset); in HWTEST_F_L0() 189 JSTaggedValue fvalue = JSAPITreeSet::PopFirst(thread, tset); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
H A D | js_api_tree_set.h | 42 static JSTaggedValue PopFirst(JSThread *thread, const JSHandle<JSAPITreeSet> &set);
|
H A D | js_api_deque.h | 64 JSTaggedValue PopFirst();
|
H A D | js_api_tree_set.cpp | 88 JSTaggedValue JSAPITreeSet::PopFirst(JSThread *thread, const JSHandle<JSAPITreeSet> &set) in PopFirst() function in panda::ecmascript::JSAPITreeSet
|
H A D | js_api_deque.cpp | 106 JSTaggedValue JSAPIDeque::PopFirst() in PopFirst() function in panda::ecmascript::JSAPIDeque
|
/arkcompiler/ets_runtime/ecmascript/containers/tests/ |
H A D | containers_deque_test.cpp | 219 HWTEST_F_L0(ContainersDequeTest, PopFirst) in HWTEST_F_L0() 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()
|
H A D | containers_treeset_test.cpp | 675 JSTaggedValue result = ContainersTreeSet::PopFirst(callInfo); in HWTEST_F_L0() 721 JSTaggedValue result = ContainersTreeSet::PopFirst(callInfo); in HWTEST_F_L0() 1121 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersTreeSet, PopFirst); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreesetpopfirst_fuzzer/ |
H A D | containerstreesetpopfirst_fuzzer.cpp | 112 ContainersTreeSet::PopFirst(objCallInfo); in ContainersTreeSetPopFirstFuzzTest()
|
/arkcompiler/ets_runtime/test/fuzztest/containersdequecommon_fuzzer/ |
H A D | containersdequecommon_fuzzer.h | 343 ContainersDeque::PopFirst(callInfo1);
in ContainersDequePopFirstFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | runtime_call_id.h | 1114 V(TreeSet, PopFirst) \ 1129 V(Deque, PopFirst) \
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 837 reinterpret_cast<uintptr_t>(TreeSet::PopFirst), 853 reinterpret_cast<uintptr_t>(Deque::PopFirst),
|