Lines Matching refs:attributes
17 const PropertyAttributes& attributes) { in operator <<() argument
19 os << (((attributes & READ_ONLY) == 0) ? "W" : "_"); // writable in operator <<()
20 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable in operator <<()
21 os << (((attributes & DONT_DELETE) == 0) ? "C" : "_"); // configurable in operator <<()
29 PropertyKind kind, PropertyAttributes attributes, in Descriptor() argument
34 details_(kind, attributes, location, constness, representation, in Descriptor()
48 int field_index, PropertyAttributes attributes, in DataField() argument
50 return DataField(key, field_index, attributes, PropertyConstness::kMutable, in DataField()
55 PropertyAttributes attributes, in DataField() argument
60 PropertyDetails details(kData, attributes, kField, constness, representation, in DataField()
66 PropertyAttributes attributes) { in DataConstant() argument
67 return Descriptor(key, MaybeObjectHandle(value), kData, attributes, in DataConstant()
74 PropertyAttributes attributes) { in DataConstant() argument
77 return DataField(key, field_index, attributes, PropertyConstness::kConst, in DataConstant()
81 return Descriptor(key, MaybeObjectHandle(value), kData, attributes, in DataConstant()
89 PropertyAttributes attributes) { in AccessorConstant() argument
90 return Descriptor(key, MaybeObjectHandle(foreign), kAccessor, attributes, in AccessorConstant()
101 os << ", attrs: " << attributes() << ")"; in PrintAsSlowTo()
124 os << ", attrs: " << attributes(); in PrintAsFastTo()