Lines Matching refs:handleObj
1541 JSHandle<JSTaggedValue> handleObj(thread, obj.IsJSProxy() ? JSProxy::Cast(obj)->GetPrivateField() : obj);
1546 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, handleKey, handleObj, undefined, 0);
1554 !JSTaggedValue::GetOwnProperty(thread, handleObj, handleKey, desc)) {
1572 JSHandle<JSTaggedValue> handleObj(thread, obj.IsJSProxy() ? JSProxy::Cast(obj)->GetPrivateField() : obj);
1578 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, handleKey, handleObj, undefined, 1);
1587 !JSTaggedValue::GetOwnProperty(thread, handleObj, handleKey, desc)) {
1591 bool res = JSTaggedValue::DefineOwnProperty(thread, handleObj, handleKey, desc);
1608 JSHandle<JSTaggedValue> handleObj(thread, obj.IsJSProxy() ? JSProxy::Cast(obj)->GetPrivateField() : obj);
1610 bool res = JSTaggedValue::IsPropertyKey(handleKey) && JSTaggedValue::HasProperty(thread, handleObj, handleKey);
3200 JSHandle<JSObject> handleObj(thread, obj);
3205 JSObject::CreateDataPropertyOrThrow(thread, handleObj, handleKey, handleValue, SCheckMode::CHECK);
3298 JSHandle<JSTaggedValue> handleObj(thread, obj.IsJSProxy() ? JSProxy::Cast(obj)->GetPrivateField() : obj);
3303 JSTaggedValue::GetOwnProperty(thread, handleObj, handleKey, desc)) {
3306 bool extensible = handleObj->IsExtensible(thread);
3307 if (handleObj->IsUndefined()) {
3310 if (handleObj->IsJSShared()) {
3316 handleObj->GetTaggedObject()->GetClass()->SetExtensible(true);
3318 bool result = JSObject::CreateDataPropertyOrThrow(thread, JSHandle<JSObject>::Cast(handleObj),
3322 handleObj->GetTaggedObject()->GetClass()->SetExtensible(false);