Lines Matching refs:attributes
39 const PropertyAttributes& attributes) {
41 os << (((attributes & READ_ONLY) == 0) ? "W" : "_"); // writable
42 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable
43 os << (((attributes & DONT_DELETE) == 0) ? "C" : "_"); // configurable
61 PropertyKind kind, PropertyAttributes attributes,
66 details_(kind, attributes, location, constness, representation,
80 int field_index, PropertyAttributes attributes,
82 return DataField(key, field_index, attributes, PropertyConstness::kMutable,
87 PropertyAttributes attributes,
92 PropertyDetails details(PropertyKind::kData, attributes,
99 PropertyAttributes attributes) {
102 attributes, PropertyLocation::kDescriptor,
109 PropertyAttributes attributes) {
111 return DataField(key, field_index, attributes, PropertyConstness::kConst,
117 PropertyAttributes attributes) {
119 attributes, PropertyLocation::kDescriptor,
131 os << ", attrs: " << attributes() << ")";
154 os << ", attrs: " << attributes();