Home
last modified time | relevance | path

Searched refs:IsJSAPIHashMap (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_hashmap.cpp66 if (!self->IsJSAPIHashMap()) { in Keys()
67 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashMap()) { in Keys()
87 if (!self->IsJSAPIHashMap()) { in Values()
88 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashMap()) { in Values()
108 if (!self->IsJSAPIHashMap()) { in Entries()
109 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashMap()) { in Entries()
129 if (!thisHandle->IsJSAPIHashMap()) { in ForEach()
130 …if (thisHandle->IsJSProxy() && JSHandle<JSProxy>::Cast(thisHandle)->GetTarget().IsJSAPIHashMap()) { in ForEach()
182 if (!self->IsJSAPIHashMap()) { in Set()
183 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashMap()) { in Set()
[all …]
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_hashmap_test.cpp131 ASSERT_TRUE(result.IsJSAPIHashMap()); in HWTEST_F_L0()
159 EXPECT_TRUE(result.IsJSAPIHashMap()); in HWTEST_F_L0()
191 EXPECT_TRUE(result.IsJSAPIHashMap()); in HWTEST_F_L0()
242 EXPECT_TRUE(result.IsJSAPIHashMap()); in HWTEST_F_L0()
293 EXPECT_TRUE(result2.IsJSAPIHashMap()); in HWTEST_F_L0()
362 EXPECT_TRUE(result1.IsJSAPIHashMap()); in HWTEST_F_L0()
440 EXPECT_TRUE(result.IsJSAPIHashMap()); in HWTEST_F_L0()
493 EXPECT_TRUE(result.IsJSAPIHashMap()); in HWTEST_F_L0()
530 EXPECT_TRUE(result.IsJSAPIHashMap()); in HWTEST_F_L0()
578 EXPECT_TRUE(result.IsJSAPIHashMap()); in HWTEST_F_L0()
[all …]
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_hashmap.h29 ASSERT(JSTaggedValue(object).IsJSAPIHashMap()); in Cast()
Djs_api_hashmap_iterator.cpp154 if (!obj->IsJSAPIHashMap()) { in CreateHashMapIterator()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_stub_builder.h98 return IsJSAPIHashMap(obj); in IsContainer()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h706 inline bool JSTaggedValue::IsJSAPIHashMap() const in IsJSAPIHashMap() function
708 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPIHashMap(); in IsJSAPIHashMap()
Djs_tagged_value.h635 bool IsJSAPIHashMap() const;
Djs_hclass.h933 inline bool IsJSAPIHashMap() const in IsJSAPIHashMap() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h333 GateRef IsJSAPIHashMap(GateRef obj);
Dstub_builder-inl.h1219 inline GateRef StubBuilder::IsJSAPIHashMap(GateRef obj) in IsJSAPIHashMap() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3416 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPIHashMap(); in IsHashMap()