Lines Matching refs:CreateDataProperty
741 return CreateDataProperty(thread, JSHandle<JSObject>(receiver), key, value); in SetProperty()
1363 bool JSObject::CreateDataProperty(JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<J… in CreateDataProperty() function in panda::ecmascript::JSObject
1377 bool JSObject::CreateDataProperty(JSThread *thread, const JSHandle<JSObject> &obj, uint32_t index, in CreateDataProperty() function in panda::ecmascript::JSObject
1397 bool success = CreateDataProperty(thread, obj, key, value); in CreateDataPropertyOrThrow()
1409 bool success = CreateDataProperty(thread, obj, index, value); in CreateDataPropertyOrThrow()
1798 bool success = CreateDataProperty(thread, objHandle, valueStr, desc.GetValue()); in FromPropertyDescriptor()
1805 … [[maybe_unused]] bool success = CreateDataProperty(thread, objHandle, writableStr, writable); in FromPropertyDescriptor()
1811 bool success = CreateDataProperty(thread, objHandle, getStr, desc.GetGetter()); in FromPropertyDescriptor()
1817 bool success = CreateDataProperty(thread, objHandle, setStr, desc.GetSetter()); in FromPropertyDescriptor()
1825 … [[maybe_unused]] bool success = CreateDataProperty(thread, objHandle, enumerableStr, enumerable); in FromPropertyDescriptor()
1833 …[[maybe_unused]] bool success = CreateDataProperty(thread, objHandle, configurableStr, configurabl… in FromPropertyDescriptor()