Lines Matching refs:PropertyAttributes
18 enum PropertyAttributes { enum
35 V8_INLINE PropertyAttributes PropertyAttributesFromInt(int value) { in PropertyAttributesFromInt()
36 DCHECK_EQ(value & ~PropertyAttributes::ALL_ATTRIBUTES_MASK, 0); in PropertyAttributesFromInt()
37 return static_cast<PropertyAttributes>(value); in PropertyAttributesFromInt()
268 constexpr PropertyDetails(PropertyKind kind, PropertyAttributes attributes,
282 constexpr PropertyDetails(PropertyKind kind, PropertyAttributes attributes,
293 constexpr PropertyDetails(PropertyKind kind, PropertyAttributes attributes,
341 PropertyDetails CopyAddAttributes(PropertyAttributes new_attributes) const { in CopyAddAttributes()
343 static_cast<PropertyAttributes>(attributes() | new_attributes); in CopyAddAttributes()
363 PropertyAttributes attributes() const { in attributes()
367 bool HasKindAndAttributes(PropertyKind kind, PropertyAttributes attributes) { in HasKindAndAttributes()
402 using AttributesField = ConstnessField::Next<PropertyAttributes, 3>;
504 PropertyDetails(int value, PropertyAttributes attributes) { in PropertyDetails()
533 std::ostream& os, const PropertyAttributes& attributes);