Lines Matching full:attributes
16 const PropertyAttributes& attributes) {
18 os << (((attributes & READ_ONLY) == 0) ? "W" : "_"); // writable
19 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable
20 os << (((attributes & DONT_DELETE) == 0) ? "C" : "_"); // configurable
26 PropertyAttributes attributes,
28 return DataField(key, field_index, attributes, kMutable, representation,
33 PropertyAttributes attributes,
38 PropertyDetails details(kData, attributes, kField, constness, representation,
45 PropertyAttributes attributes) {
48 return DataField(key, field_index, attributes, kConst,
52 return Descriptor(key, value, kData, attributes, kDescriptor, kConst,
63 os << ", attrs: " << attributes() << ")";
86 os << ", attrs: " << attributes();