Lines Matching refs:result

537   int result = 0;
540 result++;
542 return result;
619 Map result = *this;
622 Object back = result.GetBackPointer(cage_base);
626 DCHECK_LE(result.NumberOfOwnDescriptors(),
627 result.instance_descriptors(cage_base, kRelaxedLoad)
629 return result;
631 result = Map::cast(back);
641 Map result = *this;
643 Object back = result.GetBackPointer(isolate);
647 result = parent;
649 return result;
1083 int result = 0;
1088 result++;
1091 return result;
1146 Handle<Map> result = isolate->factory()->NewMap(
1154 Map raw = *result;
1175 Map::SetPrototype(isolate, result, prototype);
1176 return result;
1263 Handle<Map> result = RawCopy(
1268 Map raw = *result;
1279 if (FLAG_verify_heap) result->DictionaryMapVerify(isolate);
1282 return result;
1335 Handle<Map> result =
1339 result->SetInObjectUnusedPropertyFields(unused_property_fields);
1345 result->set_owns_descriptors(false);
1346 result->UpdateDescriptors(isolate, descriptors, number_of_own_descriptors);
1348 DCHECK_EQ(result->NumberOfFields(ConcurrencyMode::kSynchronous),
1349 result->GetInObjectProperties() - result->UnusedPropertyFields());
1352 return result;
1356 Handle<Map> result =
1362 result->CopyUnusedPropertyFields(*map);
1365 return result;
1377 Handle<Map> result = CopyDropDescriptors(isolate, map);
1380 // Properly mark the {result} if the {name} is an "interesting symbol".
1382 result->set_may_have_interesting_symbols(true);
1400 result->InitializeDescriptors(isolate, *descriptors);
1403 DCHECK(result->NumberOfOwnDescriptors() == map->NumberOfOwnDescriptors() + 1);
1404 ConnectTransition(isolate, map, result, name, SIMPLE_PROPERTY_TRANSITION);
1406 return result;
1445 Handle<Map> result = CopyDropDescriptors(isolate, map);
1448 // Properly mark the {result} if the {name} is an "interesting symbol".
1451 result->set_may_have_interesting_symbols(true);
1455 result->InitializeDescriptors(isolate, *descriptors);
1459 result->InitializeDescriptors(isolate, *descriptors);
1462 ConnectTransition(isolate, map, result, name, simple_flag);
1466 result->InitializeDescriptors(isolate, *descriptors);
1470 LOG(isolate, MapEvent("ReplaceDescriptors", map, result, reason,
1473 return result;
1861 Handle<Map> result;
1862 if (!maybe_map.ToHandle(&result)) {
1882 result = Map::Normalize(isolate, initial_map, CLEAR_INOBJECT_PROPERTIES,
1885 Handle<HeapObject> prototype(result->prototype(), isolate);
1886 JSFunction::SetInitialMap(isolate, constructor, result, prototype);
1891 if (!result->EquivalentToForNormalization(*map,
1893 result =
1897 result = Map::Normalize(isolate, map, CLEAR_INOBJECT_PROPERTIES, reason);
1901 return result;