Home | History | Annotate | Download | only in src

Lines Matching refs:new_descriptors

1541   Object* new_descriptors;
1544 if (!maybe_new_descriptors->ToObject(&new_descriptors)) {
1606 new_map->set_instance_descriptors(DescriptorArray::cast(new_descriptors));
1618 Object* new_descriptors;
1621 if (!maybe_new_descriptors->ToObject(&new_descriptors)) {
1632 DescriptorArray* descriptors = DescriptorArray::cast(new_descriptors);
1660 if (!maybe_new_descriptors->ToObject(&new_descriptors)) {
1665 old_map->set_instance_descriptors(DescriptorArray::cast(new_descriptors));
1818 Object* new_descriptors;
1821 if (!maybe_new_descriptors->ToObject(&new_descriptors)) {
1825 old_map->set_instance_descriptors(DescriptorArray::cast(new_descriptors));
1853 DescriptorArray* new_descriptors =
1864 new_map->set_instance_descriptors(new_descriptors);
2403 Object* new_descriptors;
2406 if (!maybe_new_descriptors->ToObject(&new_descriptors)) {
2409 set_instance_descriptors(DescriptorArray::cast(new_descriptors));
5759 DescriptorArray* new_descriptors;
5761 if (!maybe_result->To(&new_descriptors)) return maybe_result;
5764 DescriptorArray::WhitenessWitness witness(new_descriptors);
5778 new_descriptors->SetNextEnumerationIndex(enumeration_index);
5794 new_descriptors->CopyFrom(to_index++, this, from_index, witness);
5801 new_descriptors->Set(insertion_index, descriptor, witness);
5803 ASSERT(to_index == new_descriptors->number_of_descriptors());
5804 SLOW_ASSERT(new_descriptors->IsSortedNoDuplicates());
5806 return new_descriptors;
5816 DescriptorArray* new_descriptors;
5818 if (!maybe_result->To(&new_descriptors)) return maybe_result;
5822 DescriptorArray::WhitenessWitness witness(new_descriptors);
5827 new_descriptors->CopyFrom(next_descriptor++, this, i, witness);
5831 ASSERT(next_descriptor == new_descriptors->number_of_descriptors());
5833 return new_descriptors;