Lines Matching refs:attributes
33 if (properties[i].attributes & NATIVE_STATIC) { in CreateSendablePropertiesInfos()
35 } else if (properties[i].attributes & NATIVE_INSTANCE) { in CreateSendablePropertiesInfos()
37 } else if (properties[i].attributes & NATIVE_INSTANCE_OBJECT) { in CreateSendablePropertiesInfos()
40 } else if (properties[i].attributes & NATIVE_INSTANCE_GENERIC) { in CreateSendablePropertiesInfos()
59 bool writable = (propertyDescriptor.attributes & NATIVE_WRITABLE) != 0; in InitSendablePropertiesInfo()
60 bool enumable = (propertyDescriptor.attributes & NATIVE_ENUMERABLE) != 0; in InitSendablePropertiesInfo()
61 bool configable = (propertyDescriptor.attributes & NATIVE_CONFIGURABLE) != 0; in InitSendablePropertiesInfo()
86 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()
143 bool enumable = (propertyDescriptor.attributes & NATIVE_ENUMERABLE) != 0; in NapiDefineSendabledProperty()
144 bool configable = (propertyDescriptor.attributes & NATIVE_CONFIGURABLE) != 0; in NapiDefineSendabledProperty()