Lines Matching defs:SetProperty
817 return SetProperty(&op, value, mayThrow);
844 bool JSObject::SetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, const JSHandle<JSTaggedValue> &key,
852 return SetProperty(&op, value, mayThrow);
855 bool JSObject::SetProperty(JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<JSTaggedValue> &key,
862 return SetProperty(&op, value, mayThrow);
865 bool JSObject::SetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, const JSHandle<JSTaggedValue> &key,
872 return JSSharedArray::SetProperty(thread, obj, key, value, mayThrow, sCheckMode);
876 return SetProperty(&op, value, mayThrow);
879 bool JSObject::SetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, uint32_t index,
885 return SetProperty(&op, value, mayThrow);
1002 bool JSObject::SetProperty(ObjectOperator *op, const JSHandle<JSTaggedValue> &value, bool mayThrow)
1012 return JSProxy::SetProperty(thread, JSHandle<JSProxy>::Cast(holder), key, value, receiver, mayThrow);
1014 return JSProxy::SetProperty(thread, JSHandle<JSProxy>::Cast(holder), op->GetKey(), value, receiver, mayThrow);