/arkcompiler/ets_runtime/ecmascript/containers/ |
H A D | containers_lightweightmap.h | 27 static JSTaggedValue HasAll(EcmaRuntimeCallInfo *argv);
|
H A D | containers_lightweightset.h | 30 static JSTaggedValue HasAll(EcmaRuntimeCallInfo *argv);
|
H A D | containers_lightweightset.cpp | 159 JSTaggedValue ContainersLightWeightSet::HasAll(EcmaRuntimeCallInfo *argv) in HasAll() function in panda::ecmascript::containers::ContainersLightWeightSet 163 BUILTINS_API_TRACE(thread, LightWeightSet, HasAll); in HasAll() 189 return JSTaggedValue(set->HasAll(value)); in HasAll()
|
H A D | containers_lightweightmap.cpp | 74 JSTaggedValue ContainersLightWeightMap::HasAll(EcmaRuntimeCallInfo *argv) in HasAll() function in panda::ecmascript::containers::ContainersLightWeightMap 78 BUILTINS_API_TRACE(thread, LightWeightMap, HasAll); in HasAll() 107 return JSAPILightWeightMap::HasAll(thread, JSHandle<JSAPILightWeightMap>::Cast(self), in HasAll()
|
H A D | containers_private.cpp | 363 SetFrozenFunction(thread, funcPrototype, "hasAll", ContainersLightWeightMap::HasAll, FuncLength::ONE); in InitializeLightWeightMap() 439 SetFrozenFunction(thread, funcPrototype, "hasAll", ContainersLightWeightSet::HasAll, FuncLength::ONE); in InitializeLightWeightSet()
|
/arkcompiler/ets_runtime/test/fuzztest/containerslightweightmaphasall_fuzzer/ |
H A D | containerslightweightmaphasall_fuzzer.cpp | 115 ContainersLightWeightMap::HasAll(callInfo2); in ContainersLightWeightMapHasAllhFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
H A D | js_api_lightweightset.h | 57 bool HasAll(const JSHandle<JSTaggedValue> &value);
|
H A D | js_api_lightweightmap.h | 54 static JSTaggedValue HasAll(JSThread *thread, const JSHandle<JSAPILightWeightMap> &lightWeightMap,
|
H A D | js_api_lightweightset.cpp | 196 bool JSAPILightWeightSet::HasAll(const JSHandle<JSTaggedValue> &value) in HasAll() function in panda::ecmascript::JSAPILightWeightSet
|
H A D | js_api_lightweightmap.cpp | 100 JSTaggedValue JSAPILightWeightMap::HasAll(JSThread *thread, const JSHandle<JSAPILightWeightMap> &lightWeightMap, in HasAll() function in JSAPILightWeightMap
|
/arkcompiler/ets_runtime/test/fuzztest/containerslightweightsethasall_fuzzer/ |
H A D | containerslightweightsethasall_fuzzer.cpp | 111 ContainersLightWeightSet::HasAll(callInfo1); in ContainersLightWeightSetFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/containers/tests/ |
H A D | containers_lightweightset_test.cpp | 266 // test HasAll true in HWTEST_F_L0() 274 JSTaggedValue result = ContainersLightWeightSet::HasAll(callInfo); in HWTEST_F_L0() 279 // test HasAll fales in HWTEST_F_L0() 308 JSTaggedValue result = ContainersLightWeightSet::HasAll(callInfo); in HWTEST_F_L0() 379 JSTaggedValue result = ContainersLightWeightSet::HasAll(callInfo); in HWTEST_F_L0() 582 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersLightWeightSet, HasAll); in HWTEST_F_L0() 605 CONTAINERS_API_EXCEPTION_TEST(ContainersLightWeightSet, HasAll, callInfo); in HWTEST_F_L0()
|
H A D | containers_lightweightmap_test.cpp | 588 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersLightWeightMap, HasAll); in HWTEST_F_L0() 602 CONTAINERS_API_EXCEPTION_TEST(ContainersLightWeightMap, HasAll, callInfo); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_api_lightweightset_test.cpp | 194 result = lws->HasAll(JSHandle<JSTaggedValue>::Cast(hasAllLws)); in HWTEST_F_L0() 196 result = hasAllLws->HasAll(JSHandle<JSTaggedValue>::Cast(lws)); in HWTEST_F_L0()
|
H A D | js_api_lightweightmap_test.cpp | 376 // test HasAll in HWTEST_F_L0() 395 EXPECT_EQ(JSAPILightWeightMap::HasAll(thread, lwp, hasAllLwp), JSTaggedValue::False()); in HWTEST_F_L0() 396 EXPECT_EQ(JSAPILightWeightMap::HasAll(thread, hasAllLwp, lwp), JSTaggedValue::False()); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | runtime_call_id.h | 998 V(LightWeightMap, HasAll) \ 1024 V(LightWeightSet, HasAll) \
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 766 reinterpret_cast<uintptr_t>(LightWeightMap::HasAll), 793 reinterpret_cast<uintptr_t>(LightWeightSet::HasAll),
|