Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Dobject_operator.cpp301 ASSERT(obj->IsJSGlobalObject()); in LookupGlobal()
331 if (obj->IsJSGlobalObject()) { in LookupPropertyInlinedProps()
407 } else if (receiver->IsJSGlobalObject()) { in TransitionForAttributeChanged()
498 if (receiver->IsJSGlobalObject()) { in UpdateDataValue()
589 if (receiver->IsJSGlobalObject()) { in WriteDataProperty()
795 if (obj->IsJSGlobalObject()) { in AddPropertyInternal()
Djs_object-inl.h61 inline bool JSObject::IsJSGlobalObject() const in IsJSGlobalObject() function
63 return GetJSHClass()->IsJSGlobalObject(); in IsJSGlobalObject()
Djs_object.cpp289 if (obj->IsJSGlobalObject()) { in DeletePropertyInternal()
330 if (obj->IsJSGlobalObject()) { in GetAllKeys()
354 if (obj->IsJSGlobalObject()) { in GetAllKeysByFilter()
367 ASSERT_PRINT(!obj->IsJSGlobalObject(), "Do not support get key of JSGlobal Object"); in GetAllKeys()
384 if (obj->IsJSGlobalObject()) { in GetAllEnumKeys()
432 if (obj->IsJSGlobalObject()) { in GetAllEnumKeys()
993 if (desc.HasValue() && obj->IsJSGlobalObject()) { in OrdinaryGetOwnProperty()
Djs_tagged_value-inl.h1280 inline bool JSTaggedValue::IsJSGlobalObject() const in IsJSGlobalObject() function
1282 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSGlobalObject(); in IsJSGlobalObject()
Djs_tagged_value.h534 bool IsJSGlobalObject() const;
Djs_object.h530 bool IsJSGlobalObject() const;
Djs_hclass.h1178 inline bool IsJSGlobalObject() const in IsJSGlobalObject() function
Ddump.cpp1434 if (IsJSGlobalObject()) { in Dump()
4365 if (IsJSGlobalObject()) { in DumpForSnapshot()
/arkcompiler/ets_runtime/ecmascript/ic/tests/
Dic_handler_test.cpp239 EXPECT_TRUE(handler2->GetHolder().IsJSGlobalObject()); in HWTEST_F_L0()
273 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/tests/
Dobject_operator_test.cpp515 EXPECT_TRUE(objectOperator1.GetReceiver()->IsJSGlobalObject()); in HWTEST_F_L0()
516 EXPECT_FALSE(objectOperator1.GetHolder()->IsJSGlobalObject()); in HWTEST_F_L0()
520 EXPECT_TRUE(objectOperator2.GetReceiver()->IsJSGlobalObject()); in HWTEST_F_L0()
521 EXPECT_TRUE(objectOperator2.GetHolder()->IsJSGlobalObject()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/base/
Djson_stringifier.cpp820 if (obj->IsJSGlobalObject()) { in SerializeKeys()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h1364 ASSERT(globalObj->IsJSGlobalObject()); in RuntimeLdGlobalVarFromProto()