Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_hashset.cpp59 if (!self->IsJSAPIHashSet()) { in GetIteratorObj()
60 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashSet()) { in GetIteratorObj()
79 if (!self->IsJSAPIHashSet()) { in Values()
80 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashSet()) { in Values()
99 if (!self->IsJSAPIHashSet()) { in Entries()
100 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashSet()) { in Entries()
121 if (!self->IsJSAPIHashSet()) { in Add()
122 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashSet()) { in Add()
146 if (!self->IsJSAPIHashSet()) { in Remove()
147 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIHashSet()) { in Remove()
[all …]
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_hashset.h27 ASSERT(JSTaggedValue(object).IsJSAPIHashSet()); in Cast()
Djs_api_hashset_iterator.cpp142 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.h524 inline bool JSTaggedValue::IsJSAPIHashSet() const in IsJSAPIHashSet() function
526 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSAPIHashSet(); in IsJSAPIHashSet()
Djs_tagged_value.h634 bool IsJSAPIHashSet() const;
Djs_hclass.h1217 inline bool IsJSAPIHashSet() const in IsJSAPIHashSet() function
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_hashset_test.cpp110 ASSERT_TRUE(result.IsJSAPIHashSet()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h461 GateRef IsJSAPIHashSet(GateRef obj);
Dstub_builder-inl.h1558 inline GateRef StubBuilder::IsJSAPIHashSet(GateRef obj) in IsJSAPIHashSet() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp934 return JSNApiHelper::ToJSTaggedValue(this).IsJSAPIHashSet(); in IsHashSet()