Home
last modified time | relevance | path

Searched refs:IsJSAPILightWeightMapIterator (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_lightweightmap_iterator.h27 ASSERT(JSTaggedValue(obj).IsJSAPILightWeightMapIterator()); in Cast()
Djs_api_lightweightmap_iterator.cpp37 if (!input->IsJSAPILightWeightMapIterator()) { in Next()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_lightweightmap_test.cpp422 EXPECT_TRUE(iterKeys->IsJSAPILightWeightMapIterator()); in HWTEST_F_L0()
451 EXPECT_TRUE(iterValues->IsJSAPILightWeightMapIterator()); in HWTEST_F_L0()
480 EXPECT_TRUE(iter->IsJSAPILightWeightMapIterator()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h1175 inline bool JSTaggedValue::IsJSAPILightWeightMapIterator() const in IsJSAPILightWeightMapIterator() function
1177 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPILightWeightMapIterator(); in IsJSAPILightWeightMapIterator()
Djs_tagged_value.h640 bool IsJSAPILightWeightMapIterator() const;
Djs_hclass.h903 inline bool IsJSAPILightWeightMapIterator() const in IsJSAPILightWeightMapIterator() function
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_api_lightweightmap_test.cpp474 EXPECT_TRUE(iteratorObj->IsJSAPILightWeightMapIterator()); in HWTEST_F_L0()