Lines Matching refs:attributes
33 if (properties[i].attributes & NATIVE_STATIC) {
35 } else if (properties[i].attributes & NATIVE_INSTANCE) {
37 } else if (properties[i].attributes & NATIVE_INSTANCE_OBJECT) {
40 } else if (properties[i].attributes & NATIVE_INSTANCE_GENERIC) {
59 bool writable = (propertyDescriptor.attributes & NATIVE_WRITABLE) != 0;
60 bool enumable = (propertyDescriptor.attributes & NATIVE_ENUMERABLE) != 0;
61 bool configable = (propertyDescriptor.attributes & NATIVE_CONFIGURABLE) != 0;
86 info.attributes.push_back(PropertyAttribute(val, false, enumable, configable));
99 info.attributes.push_back(PropertyAttribute(func, writable, enumable, configable));
103 info.attributes.push_back(PropertyAttribute(val, writable, enumable, configable));
143 bool enumable = (propertyDescriptor.attributes & NATIVE_ENUMERABLE) != 0;
144 bool configable = (propertyDescriptor.attributes & NATIVE_CONFIGURABLE) != 0;