Home
last modified time | relevance | path

Searched refs:IsJSGlobalObject (Results 1 – 18 of 18) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/tests/
Dobject_operator_second_test.cpp83 EXPECT_TRUE(objectOperator1.GetReceiver()->IsJSGlobalObject()); in HWTEST_F_L0()
84 EXPECT_FALSE(objectOperator1.GetHolder()->IsJSGlobalObject()); in HWTEST_F_L0()
88 EXPECT_TRUE(objectOperator2.GetReceiver()->IsJSGlobalObject()); in HWTEST_F_L0()
89 EXPECT_TRUE(objectOperator2.GetHolder()->IsJSGlobalObject()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/ic/tests/
Dic_handler_test.cpp242 EXPECT_TRUE(handler2->GetHolder().IsJSGlobalObject()); in HWTEST_F_L0()
276 EXPECT_TRUE(handler->GetHolder().IsJSGlobalObject()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dbuiltins_base_test.cpp114 EXPECT_TRUE(BuiltinsBase::GetNewTarget(ecmaRuntimeCallInfo2)->IsJSGlobalObject()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Dobject_operator.cpp492 ASSERT(obj->IsJSGlobalObject()); in LookupGlobal()
522 if (obj->IsJSGlobalObject()) { in LookupPropertyInlinedProps()
598 } else if (receiver->IsJSGlobalObject()) { in TransitionForAttributeChanged()
676 if (receiver->IsJSGlobalObject()) { in UpdateDataValue()
981 if (obj->IsJSGlobalObject()) { in AddPropertyInternal()
Djs_object-inl.h73 inline bool JSObject::IsJSGlobalObject() const in IsJSGlobalObject() function
75 return GetJSHClass()->IsJSGlobalObject(); in IsJSGlobalObject()
Djs_object.cpp404 if (obj->IsJSGlobalObject()) { in DeletePropertyInternal()
441 if (obj->IsJSGlobalObject()) { in GetAllKeys()
465 if (obj->IsJSGlobalObject()) { in GetAllKeysByFilter()
478 ASSERT_PRINT(!obj->IsJSGlobalObject(), "Do not support get key of JSGlobal Object"); in GetAllKeysForSerialization()
496 if (obj->IsJSGlobalObject()) { in GetAllEnumKeys()
547 if (obj->IsJSGlobalObject()) { in GetAllEnumKeys()
730 if (IsJSGlobalObject()) { in GetNumberOfEnumKeys()
1069 ASSERT(IsJSGlobalObject()); in GetGlobalPropertyBox()
1182 if (desc.HasValue() && obj->IsJSGlobalObject()) { in OrdinaryGetOwnProperty()
1555 ASSERT(!obj->IsJSGlobalObject()); in CollectEnumKeysAlongProtoChain()
Djs_tagged_value-inl.h1325 inline bool JSTaggedValue::IsJSGlobalObject() const in IsJSGlobalObject() function
1327 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSGlobalObject(); in IsJSGlobalObject()
1337 return IsJSGlobalObject() || IsJSProxy() || IsSpecialKeysObject(); in IsSlowKeysObject()
Djs_tagged_value.h481 bool IsJSGlobalObject() const;
Djs_object.h593 bool IsJSGlobalObject() const;
Djs_hclass.h1299 inline bool IsJSGlobalObject() const in IsJSGlobalObject() function
Ddump.cpp1534 if (IsJSGlobalObject()) { in Dump()
4682 if (IsJSGlobalObject()) { in DumpForSnapshot()
/arkcompiler/ets_runtime/ecmascript/base/
Dfast_json_stringifier.cpp557 if (obj->IsJSGlobalObject()) { in TryCacheSerializeKeys()
649 if (obj->IsJSGlobalObject()) { in SerializeKeysWithCache()
842 if (obj->IsJSGlobalObject()) { in DefaultSerializeKeys()
Djson_stringifier.cpp738 if (obj->IsJSGlobalObject()) { in SerializeKeys()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_object_stub_builder.cpp1258 GateRef notSlowObjectKey = BoolNot(BoolOr(isSpecialKey, IsJSGlobalObject(obj))); in Keys()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h343 GateRef IsJSGlobalObject(GateRef obj);
Dstub_builder-inl.h1227 inline GateRef StubBuilder::IsJSGlobalObject(GateRef obj) in IsJSGlobalObject() function
Dstub_builder.cpp6338 result = BoolOr(BoolOr(IsJSGlobalObject(obj), IsJsProxy(obj)), IsSpecialKeysObject(obj)); in IsSlowKeysObject()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h1546 ASSERT(globalObj->IsJSGlobalObject()); in RuntimeLdGlobalVarFromProto()