Searched refs:new_space_strings_ (Results 1 – 3 of 3) sorted by relevance
564 new_space_strings_.Add(string); in AddString()572 if (!new_space_strings_.is_empty()) { in Iterate()573 Object** start = &new_space_strings_[0]; in Iterate()574 v->VisitPointers(start, start + new_space_strings_.length()); in Iterate()587 for (int i = 0; i < new_space_strings_.length(); ++i) { in Verify()588 Object* obj = Object::cast(new_space_strings_[i]); in Verify()609 new_space_strings_.Rewind(position); in ShrinkNewStrings()
1796 if (external_string_table_.new_space_strings_.is_empty()) return; in UpdateNewSpaceReferencesInExternalStringTable()1798 Object** start = &external_string_table_.new_space_strings_[0]; in UpdateNewSpaceReferencesInExternalStringTable()1799 Object** end = start + external_string_table_.new_space_strings_.length(); in UpdateNewSpaceReferencesInExternalStringTable()6018 for (int i = 0; i < new_space_strings_.length(); ++i) { in CleanUp()6019 if (new_space_strings_[i] == heap_->the_hole_value()) { in CleanUp()6022 DCHECK(new_space_strings_[i]->IsExternalString()); in CleanUp()6023 if (heap_->InNewSpace(new_space_strings_[i])) { in CleanUp()6024 new_space_strings_[last++] = new_space_strings_[i]; in CleanUp()6026 old_space_strings_.Add(new_space_strings_[i]); in CleanUp()6029 new_space_strings_.Rewind(last); in CleanUp()[all …]
1617 List<Object*> new_space_strings_; variable