Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_hashset.cpp63 if (!self->IsJSAPIHashSet()) { in Values()
64 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashSet()) { in Values()
83 if (!self->IsJSAPIHashSet()) { in Entries()
84 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashSet()) { in Entries()
105 if (!self->IsJSAPIHashSet()) { in Add()
106 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashSet()) { in Add()
130 if (!self->IsJSAPIHashSet()) { in Remove()
131 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashSet()) { in Remove()
153 if (!self->IsJSAPIHashSet()) { in Has()
154 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashSet()) { in Has()
[all …]
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_hashset_test.cpp110 ASSERT_TRUE(result.IsJSAPIHashSet()); in HWTEST_F_L0()
137 EXPECT_TRUE(result.IsJSAPIHashSet()); in HWTEST_F_L0()
167 EXPECT_TRUE(result.IsJSAPIHashSet()); in HWTEST_F_L0()
211 EXPECT_TRUE(result.IsJSAPIHashSet()); in HWTEST_F_L0()
243 EXPECT_TRUE(result.IsJSAPIHashSet()); in HWTEST_F_L0()
285 EXPECT_TRUE(result.IsJSAPIHashSet()); in HWTEST_F_L0()
329 EXPECT_TRUE(result.IsJSAPIHashSet()); in HWTEST_F_L0()
371 EXPECT_TRUE(result1.IsJSAPIHashSet()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_hashset.h27 ASSERT(JSTaggedValue(object).IsJSAPIHashSet()); in Cast()
Djs_api_hashset_iterator.cpp148 if (!obj->IsJSAPIHashSet()) { in CreateHashSetIterator()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_stub_builder.h100 return IsJSAPIHashSet(obj); in IsContainer()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h711 inline bool JSTaggedValue::IsJSAPIHashSet() const in IsJSAPIHashSet() function
713 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPIHashSet(); in IsJSAPIHashSet()
Djs_tagged_value.h637 bool IsJSAPIHashSet() const;
Djs_hclass.h938 inline bool IsJSAPIHashSet() const in IsJSAPIHashSet() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h334 GateRef IsJSAPIHashSet(GateRef obj);
Dstub_builder-inl.h1225 inline GateRef StubBuilder::IsJSAPIHashSet(GateRef obj) in IsJSAPIHashSet() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3421 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPIHashSet(); in IsHashSet()