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