/arkcompiler/ets_runtime/ecmascript/ |
D | js_proxy.h | 57 const JSHandle<JSTaggedValue> &value, bool mayThrow = false) 59 … return SetProperty(thread, proxy, key, value, JSHandle<JSTaggedValue>::Cast(proxy), mayThrow); 63 bool mayThrow = false);
|
D | accessor_data.h | 58 bool mayThrow = false) const 63 return setFunc(thread, obj, value, mayThrow);
|
D | js_typed_array.h | 69 bool mayThrow = false) 71 return SetProperty(thread, typedarray, key, value, typedarray, mayThrow); 75 const JSHandle<JSTaggedValue> &receiver, bool mayThrow = false);
|
D | js_tagged_value.cpp | 610 … const JSHandle<JSTaggedValue> &key, const JSHandle<JSTaggedValue> &value, bool mayThrow) in SetProperty() argument 621 success = JSProxy::SetProperty(thread, JSHandle<JSProxy>(obj), key, value, mayThrow); in SetProperty() 623 success = JSTypedArray::SetProperty(thread, obj, key, value, mayThrow); in SetProperty() 625 success = ModuleNamespace::SetProperty(thread, mayThrow); in SetProperty() 629 success = JSObject::SetProperty(thread, obj, key, value, mayThrow); in SetProperty() 639 const JSHandle<JSTaggedValue> &value, bool mayThrow) in SetProperty() argument 649 success = JSProxy::SetProperty(thread, JSHandle<JSProxy>(obj), keyHandle, value, mayThrow); in SetProperty() 652 success = JSTypedArray::SetProperty(thread, obj, keyHandle, value, mayThrow); in SetProperty() 654 success = ModuleNamespace::SetProperty(thread, mayThrow); in SetProperty() 659 success = JSObject::SetProperty(thread, obj, key, value, mayThrow); in SetProperty() [all …]
|
D | js_object.h | 480 const JSHandle<JSTaggedValue> &value, bool mayThrow = false); 483 const JSHandle<JSTaggedValue> &value, bool mayThrow = false); 487 bool mayThrow = false); 490 const JSHandle<JSTaggedValue> &value, bool mayThrow = false); 493 const JSHandle<JSTaggedValue> &value, bool mayThrow); 525 const JSHandle<JSTaggedValue> &value, bool mayThrow = false); 660 … static bool SetProperty(ObjectOperator *op, const JSHandle<JSTaggedValue> &value, bool mayThrow);
|
D | js_object.cpp | 600 const JSHandle<JSTaggedValue> &value, bool mayThrow) in GlobalSetProperty() argument 609 return SetProperty(&op, value, mayThrow); in GlobalSetProperty() 637 … const JSHandle<JSTaggedValue> &value, const JSHandle<JSTaggedValue> &receiver, bool mayThrow) in SetProperty() argument 644 return SetProperty(&op, value, mayThrow); in SetProperty() 648 const JSHandle<JSTaggedValue> &value, bool mayThrow) in SetProperty() argument 654 return SetProperty(&op, value, mayThrow); in SetProperty() 658 const JSHandle<JSTaggedValue> &value, bool mayThrow) in SetProperty() argument 665 return SetProperty(&op, value, mayThrow); in SetProperty() 669 const JSHandle<JSTaggedValue> &value, bool mayThrow) in SetProperty() argument 674 return SetProperty(&op, value, mayThrow); in SetProperty() [all …]
|
D | js_array.h | 79 bool mayThrow = false);
|
D | js_array.cpp | 33 bool mayThrow) in LengthSetter() argument 36 if (!JSTaggedValue::ToArrayLength(thread, value, &newLen) && mayThrow) { in LengthSetter() 41 if (mayThrow) { in LengthSetter()
|
D | js_tagged_value.h | 472 const JSHandle<JSTaggedValue> &value, bool mayThrow = false); 475 const JSHandle<JSTaggedValue> &value, bool mayThrow = false); 479 bool mayThrow = false);
|
D | js_function.h | 115 bool mayThrow); 118 bool mayThrow);
|
D | object_operator.h | 263 bool isInternalAccessor, bool mayThrow = false);
|
D | js_typed_array.cpp | 232 const JSHandle<JSTaggedValue> &receiver, bool mayThrow) in SetProperty() argument 250 return JSObject::SetProperty(thread, typedarray, key, value, receiver, mayThrow); in SetProperty()
|
D | object_operator.cpp | 477 bool isInternalAccessor, bool mayThrow) in UpdateDataValue() argument 514 … bool res = accessor->CallInternalSet(thread_, JSHandle<JSObject>(receiver), value, mayThrow); in UpdateDataValue()
|
D | js_proxy.cpp | 610 … const JSHandle<JSTaggedValue> &value, const JSHandle<JSTaggedValue> &receiver, bool mayThrow) in SetProperty() argument 637 return JSTaggedValue::SetProperty(thread, targetHandle, key, value, receiver, mayThrow); in SetProperty()
|
D | js_function.cpp | 121 [[maybe_unused]] bool mayThrow) in PrototypeSetter() argument 722 [[maybe_unused]] bool mayThrow) in NameSetter() argument
|
/arkcompiler/ets_runtime/ecmascript/module/ |
D | js_module_namespace.h | 50 static bool SetProperty(JSThread *thread, bool mayThrow);
|
D | js_module_namespace.cpp | 262 bool ModuleNamespace::SetProperty(JSThread *thread, bool mayThrow) in SetProperty() argument 264 if (mayThrow) { in SetProperty()
|