Home
last modified time | relevance | path

Searched refs:PropertyAttribute (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/arkui/napi/native_engine/
H A Dnative_sendable.cpp86 info.attributes.push_back(PropertyAttribute(val, false, enumable, configable)); in InitSendablePropertiesInfo()
99 info.attributes.push_back(PropertyAttribute(func, writable, enumable, configable)); in InitSendablePropertiesInfo()
103 info.attributes.push_back(PropertyAttribute(val, writable, enumable, configable)); in InitSendablePropertiesInfo()
159 PropertyAttribute attr(JSValueRef::Undefined(vm), false, enumable, configable); in NapiDefineSendabledProperty()
H A Dnative_api.cpp62 using panda::PropertyAttribute;
209 char attrs[sizeof(PropertyAttribute) * panda::ObjectRef::MAX_PROPERTIES_ON_STACK]; in napi_create_object_with_properties()
213 reinterpret_cast<PropertyAttribute *>(attrs)); in napi_create_object_with_properties()
215 void *attrs = malloc(sizeof(PropertyAttribute) * property_count); in napi_create_object_with_properties()
220 reinterpret_cast<PropertyAttribute *>(attrs)); in napi_create_object_with_properties()
1028 panda::PropertyAttribute property; in napi_get_own_property_descriptor()
1836 PropertyAttribute attr(object, true, false, true); in napi_wrap()
1881 PropertyAttribute attr(object, true, false, true); in napi_wrap_async_finalizer()
1928 PropertyAttribute attr(object, true, false, true); in napi_wrap_with_size()
1989 PropertyAttribute attr(object, true, false, true); in napi_remove_wrap()
/ohos5.0/foundation/arkui/napi/interfaces/inner_api/cjffi/ark_interop/
H A Dark_interop_object.cpp100PropertyAttribute attribute(value, attrs & N_WRITABLE, attrs & N_ENUMERABLE, attrs & N_CONFIGURABL… in ARKTS_DefineOwnProperty()
123 PropertyAttribute attribute(handledUndef, in ARKTS_DefineAccessors()
/ohos5.0/foundation/arkui/napi/native_engine/impl/ark/
H A Dark_native_engine.h60 using PropertyAttribute = panda::PropertyAttribute; variable
101 panda::PropertyAttribute *attrs);
H A Dark_native_engine.cpp93 using panda::PropertyAttribute;
877 PropertyAttribute attr(panda::JSValueRef::Undefined(vm), false, enumable, configable); in NapiDefinePropertyInner()
892 PropertyAttribute attr(cbObj, writable, enumable, configable); in NapiDefinePropertyInner()
897 PropertyAttribute attr(val, writable, enumable, configable); in NapiDefinePropertyInner()
929 PropertyAttribute *attrs) in NapiCreateObjectWithProperties()
971 … new (reinterpret_cast<void *>(&attrs[i])) PropertyAttribute(val, writable, enumable, configable); in NapiCreateObjectWithProperties()
1075 PropertyAttribute attr(object, true, false, true); in LoadModuleByName()