Lines Matching defs:details
300 PropertyDetails details = descriptors_template->GetDetails(i);
301 if (details.location() == PropertyLocation::kDescriptor &&
302 details.kind() == PropertyKind::kData) {
322 PropertyDetails details = descriptors_template->GetDetails(i);
323 if (details.location() == PropertyLocation::kDescriptor) {
324 if (details.kind() == PropertyKind::kData) {
328 details = details.CopyWithRepresentation(
331 DCHECK_EQ(PropertyKind::kAccessor, details.kind());
347 DCHECK(value.FitsRepresentation(details.representation()));
348 if (details.location() == PropertyLocation::kDescriptor &&
349 details.kind() == PropertyKind::kData) {
350 details =
351 PropertyDetails(details.kind(), details.attributes(),
353 details.representation(), field_index)
354 .set_pointer(details.pointer());
359 details);
361 descriptors->Set(i, name, MaybeObject::FromObject(value), details);