Lines Matching refs:CreateDataProperty
856 return CreateDataProperty(thread, JSHandle<JSObject>(receiver), key, value); in SetPropertyForDataDescriptorProxy()
1607 bool JSObject::CreateDataProperty(JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<J… in CreateDataProperty() function in panda::ecmascript::JSObject
1622 bool JSObject::CreateDataProperty(JSThread *thread, const JSHandle<JSObject> &obj, uint32_t index, in CreateDataProperty() function in panda::ecmascript::JSObject
1643 bool success = CreateDataProperty(thread, obj, key, value, sCheckMode); in CreateDataPropertyOrThrow()
1655 bool success = CreateDataProperty(thread, obj, index, value); in CreateDataPropertyOrThrow()
2064 bool success = CreateDataProperty(thread, objHandle, valueStr, desc.GetValue()); in FromPropertyDescriptor()
2071 … [[maybe_unused]] bool success = CreateDataProperty(thread, objHandle, writableStr, writable); in FromPropertyDescriptor()
2077 bool success = CreateDataProperty(thread, objHandle, getStr, desc.GetGetter()); in FromPropertyDescriptor()
2083 bool success = CreateDataProperty(thread, objHandle, setStr, desc.GetSetter()); in FromPropertyDescriptor()
2091 … [[maybe_unused]] bool success = CreateDataProperty(thread, objHandle, enumerableStr, enumerable); in FromPropertyDescriptor()
2099 …[[maybe_unused]] bool success = CreateDataProperty(thread, objHandle, configurableStr, configurabl… in FromPropertyDescriptor()