Searched refs:propertyDescriptor (Results 1 – 4 of 4) sorted by relevance
/ohos5.0/foundation/arkui/napi/native_engine/ |
H A D | native_sendable.cpp | 64 if (propertyDescriptor.utf8name == nullptr) { in InitSendablePropertiesInfo() 71 if (propertyDescriptor.getter != nullptr || propertyDescriptor.setter != nullptr) { in InitSendablePropertiesInfo() 75 if (propertyDescriptor.getter != nullptr) { in InitSendablePropertiesInfo() 77 …NapiNativeCreateSendableFunction(env, "getter", propertyDescriptor.getter, propertyDescriptor.data… in InitSendablePropertiesInfo() 79 if (propertyDescriptor.setter != nullptr) { in InitSendablePropertiesInfo() 81 …NapiNativeCreateSendableFunction(env, "setter", propertyDescriptor.setter, propertyDescriptor.data… in InitSendablePropertiesInfo() 97 …piNativeCreateSendableFunction(env, fullName.c_str(), propertyDescriptor.method, propertyDescripto… in InitSendablePropertiesInfo() 146 if (propertyDescriptor.getter != nullptr || propertyDescriptor.setter != nullptr) { in NapiDefineSendabledProperty() 152 …NapiNativeCreateSendableFunction(env, "getter", propertyDescriptor.getter, propertyDescriptor.data… in NapiDefineSendabledProperty() 156 …NapiNativeCreateSendableFunction(env, "setter", propertyDescriptor.setter, propertyDescriptor.data… in NapiDefineSendabledProperty() [all …]
|
H A D | native_sendable.h | 32 NapiPropertyDescriptor& propertyDescriptor, 37 NapiPropertyDescriptor propertyDescriptor,
|
/ohos5.0/foundation/arkui/napi/native_engine/impl/ark/ |
H A D | ark_native_engine.cpp | 859 if (propertyDescriptor.getter != nullptr || propertyDescriptor.setter != nullptr) { in NapiDefinePropertyInner() 866 if (propertyDescriptor.getter != nullptr) { in NapiDefinePropertyInner() 869 … propertyDescriptor.getter, propertyDescriptor.data); in NapiDefinePropertyInner() 871 if (propertyDescriptor.setter != nullptr) { in NapiDefinePropertyInner() 874 … propertyDescriptor.setter, propertyDescriptor.data); in NapiDefinePropertyInner() 879 } else if (propertyDescriptor.method != nullptr) { in NapiDefinePropertyInner() 883 if (propertyDescriptor.utf8name != nullptr) { in NapiDefinePropertyInner() 884 fullName += propertyDescriptor.utf8name; in NapiDefinePropertyInner() 891 … propertyDescriptor.method, propertyDescriptor.data); in NapiDefinePropertyInner() 908 if (propertyDescriptor.utf8name != nullptr) { in NapiDefineProperty() [all …]
|
H A D | ark_native_engine.h | 74 NapiPropertyDescriptor &propertyDescriptor, 77 …erty(napi_env env, panda::Local<panda::ObjectRef> &obj, NapiPropertyDescriptor propertyDescriptor);
|