Lines Matching defs:details
178 PropertyDetails details) {
179 auto flags = ReadOnlyBitField::encode(details.IsReadOnly()) |
180 ConfigurableBitField::encode(details.IsConfigurable()) |
181 EnumerableBitField::encode(details.IsEnumerable());
480 PropertyDetails details =
483 if (details.location() != PropertyLocation::kField) {
487 if (first_custom_index >= 0 || details.IsReadOnly() ||
488 !details.IsConfigurable() || details.IsDontEnum()) {
490 attributes.push_back(AttributesToFlags(details));
871 PropertyDetails details =
875 isolate_, object, details.representation(), field_index);
975 PropertyDetails details =
979 isolate_, object, details.representation(), field_index);
1961 PropertyDetails details = raw_descriptors.GetDetails(InternalIndex(i));
1962 CHECK_EQ(details.location(), PropertyLocation::kField);
1963 CHECK_EQ(PropertyKind::kData, details.kind());
1964 Representation r = details.representation();
1967 details = details.CopyWithRepresentation(Representation::Tagged());
1968 raw_descriptors.SetDetails(InternalIndex(i), details);