Lines Matching refs:old_space_strings_
1828 if (external_string_table_.old_space_strings_.length() > 0) { in UpdateReferencesInExternalStringTable()
1829 Object** start = &external_string_table_.old_space_strings_[0]; in UpdateReferencesInExternalStringTable()
1830 Object** end = start + external_string_table_.old_space_strings_.length(); in UpdateReferencesInExternalStringTable()
6026 old_space_strings_.Add(new_space_strings_[i]); in CleanUp()
6033 for (int i = 0; i < old_space_strings_.length(); ++i) { in CleanUp()
6034 if (old_space_strings_[i] == heap_->the_hole_value()) { in CleanUp()
6037 DCHECK(old_space_strings_[i]->IsExternalString()); in CleanUp()
6038 DCHECK(!heap_->InNewSpace(old_space_strings_[i])); in CleanUp()
6039 old_space_strings_[last++] = old_space_strings_[i]; in CleanUp()
6041 old_space_strings_.Rewind(last); in CleanUp()
6042 old_space_strings_.Trim(); in CleanUp()
6056 for (int i = 0; i < old_space_strings_.length(); ++i) { in TearDown()
6057 heap_->FinalizeExternalString(ExternalString::cast(old_space_strings_[i])); in TearDown()
6059 old_space_strings_.Free(); in TearDown()