/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 | 714 … const JSHandle<JSTaggedValue> &key, const JSHandle<JSTaggedValue> &value, bool mayThrow) in SetProperty() argument 725 success = JSProxy::SetProperty(thread, JSHandle<JSProxy>(obj), key, value, mayThrow); in SetProperty() 727 success = JSTypedArray::SetProperty(thread, obj, key, value, mayThrow); in SetProperty() 729 success = ModuleNamespace::SetProperty(thread, mayThrow); in SetProperty() 733 success = JSObject::SetProperty(thread, obj, key, value, mayThrow); in SetProperty() 743 const JSHandle<JSTaggedValue> &value, bool mayThrow) in SetProperty() argument 753 success = JSProxy::SetProperty(thread, JSHandle<JSProxy>(obj), keyHandle, value, mayThrow); in SetProperty() 756 success = JSTypedArray::SetProperty(thread, obj, keyHandle, value, mayThrow); in SetProperty() 758 success = ModuleNamespace::SetProperty(thread, mayThrow); in SetProperty() 763 success = JSObject::SetProperty(thread, obj, key, value, mayThrow); in SetProperty() [all …]
|
D | js_object.h | 531 const JSHandle<JSTaggedValue> &value, bool mayThrow = false); 534 const JSHandle<JSTaggedValue> &value, bool mayThrow = false); 538 bool mayThrow = false); 541 const JSHandle<JSTaggedValue> &value, bool mayThrow = false); 544 const JSHandle<JSTaggedValue> &value, bool mayThrow); 587 const JSHandle<JSTaggedValue> &value, bool mayThrow = false); 755 … static bool SetProperty(ObjectOperator *op, const JSHandle<JSTaggedValue> &value, bool mayThrow); 780 … JSHandle<JSTaggedValue> &receiver, bool mayThrow, bool isInternalAccessor);
|
D | js_object.cpp | 752 const JSHandle<JSTaggedValue> &value, bool mayThrow) in GlobalSetProperty() argument 761 return SetProperty(&op, value, mayThrow); in GlobalSetProperty() 789 … const JSHandle<JSTaggedValue> &value, const JSHandle<JSTaggedValue> &receiver, bool mayThrow) in SetProperty() argument 796 return SetProperty(&op, value, mayThrow); in SetProperty() 800 const JSHandle<JSTaggedValue> &value, bool mayThrow) in SetProperty() argument 806 return SetProperty(&op, value, mayThrow); in SetProperty() 810 const JSHandle<JSTaggedValue> &value, bool mayThrow) in SetProperty() argument 817 return SetProperty(&op, value, mayThrow); in SetProperty() 821 const JSHandle<JSTaggedValue> &value, bool mayThrow) in SetProperty() argument 826 return SetProperty(&op, value, mayThrow); in SetProperty() [all …]
|
D | js_array.cpp | 36 bool mayThrow) in LengthSetter() argument 39 if (!JSTaggedValue::ToArrayLength(thread, value, &newLen) && mayThrow) { in LengthSetter() 49 if (mayThrow) { in LengthSetter() 58 if (mayThrow) { in LengthSetter()
|
D | js_tagged_value.h | 416 const JSHandle<JSTaggedValue> &value, bool mayThrow = false); 419 const JSHandle<JSTaggedValue> &value, bool mayThrow = false); 423 bool mayThrow = false);
|
D | js_array.h | 90 bool mayThrow = false);
|
D | js_function.h | 122 bool mayThrow); 126 bool mayThrow);
|
D | object_operator.h | 291 bool isInternalAccessor, bool mayThrow = false);
|
D | js_proxy.cpp | 595 … const JSHandle<JSTaggedValue> &value, const JSHandle<JSTaggedValue> &receiver, bool mayThrow) in SetProperty() argument 612 return JSTaggedValue::SetProperty(thread, targetHandle, key, value, receiver, mayThrow); in SetProperty() 629 if (mayThrow) { in SetProperty()
|
D | js_typed_array.cpp | 240 const JSHandle<JSTaggedValue> &receiver, bool mayThrow) in SetProperty() argument 258 return JSObject::SetProperty(thread, typedarray, key, value, receiver, mayThrow); in SetProperty()
|
D | object_operator.cpp | 643 bool isInternalAccessor, bool mayThrow) in UpdateDataValue() argument 692 … bool res = accessor->CallInternalSet(thread_, JSHandle<JSObject>(receiver), value, mayThrow); in UpdateDataValue()
|
D | js_function.cpp | 143 [[maybe_unused]] bool mayThrow) in PrototypeSetter() argument 840 [[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 | 273 bool ModuleNamespace::SetProperty(JSThread *thread, bool mayThrow) in SetProperty() argument 275 if (mayThrow) { in SetProperty()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_regexp.h | 89 const JSHandle<JSTaggedValue> &value, bool mayThrow);
|
D | builtins_regexp.cpp | 2399 … [[maybe_unused]] bool mayThrow) \
|