Home | History | Annotate | Download | only in src

Lines Matching refs:PropertyDetails

45 // Must fit in the BitField PropertyDetails::TypeField.
182 // PropertyDetails captures type and attributes for a property.
184 class PropertyDetails BASE_EMBEDDED {
186 PropertyDetails(PropertyAttributes attributes,
197 PropertyDetails(PropertyAttributes attributes,
209 PropertyDetails set_pointer(int i) { return PropertyDetails(value_, i); }
211 PropertyDetails CopyWithRepresentation(Representation representation) const {
212 return PropertyDetails(value_, representation);
214 PropertyDetails CopyAddAttributes(PropertyAttributes new_attributes) {
217 return PropertyDetails(value_, new_attributes);
221 explicit inline PropertyDetails(Smi* smi);
251 inline PropertyDetails AsDeleted() const;
284 PropertyDetails(int value, int pointer) {
287 PropertyDetails(int value, Representation representation) {
291 PropertyDetails(int value, PropertyAttributes attributes) {