Searched refs:old_space_strings_ (Results 1 – 3 of 3) sorted by relevance
364 old_space_strings_.Add(string); in AddString()374 if (!old_space_strings_.is_empty()) { in Iterate()375 Object** start = &old_space_strings_[0]; in Iterate()376 v->VisitPointers(start, start + old_space_strings_.length()); in Iterate()389 for (int i = 0; i < old_space_strings_.length(); ++i) { in Verify()390 ASSERT(!Heap::InNewSpace(old_space_strings_[i])); in Verify()391 ASSERT(old_space_strings_[i] != Heap::raw_unchecked_null_value()); in Verify()400 old_space_strings_.Add(string); in AddOldString()
4204 old_space_strings_.Add(new_space_strings_[i]); in CleanUp()4209 for (int i = 0; i < old_space_strings_.length(); ++i) { in CleanUp()4210 if (old_space_strings_[i] == Heap::raw_unchecked_null_value()) continue; in CleanUp()4211 ASSERT(!Heap::InNewSpace(old_space_strings_[i])); in CleanUp()4212 old_space_strings_[last++] = old_space_strings_[i]; in CleanUp()4214 old_space_strings_.Rewind(last); in CleanUp()4221 old_space_strings_.Free(); in TearDown()4226 List<Object*> ExternalStringTable::old_space_strings_; member in v8::internal::ExternalStringTable
1716 static List<Object*> old_space_strings_; variable