Home
last modified time | relevance | path

Searched refs:old_space_strings_ (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/
Dheap-inl.h557 old_space_strings_.Add(string); in AddString()
567 if (!old_space_strings_.is_empty()) { in Iterate()
568 Object** start = &old_space_strings_[0]; in Iterate()
569 v->VisitPointers(start, start + old_space_strings_.length()); in Iterate()
582 for (int i = 0; i < old_space_strings_.length(); ++i) { in Verify()
583 ASSERT(!heap_->InNewSpace(old_space_strings_[i])); in Verify()
584 ASSERT(old_space_strings_[i] != HEAP->raw_unchecked_null_value()); in Verify()
593 old_space_strings_.Add(string); in AddOldString()
Dheap.cc5840 old_space_strings_.Add(new_space_strings_[i]); in CleanUp()
5845 for (int i = 0; i < old_space_strings_.length(); ++i) { in CleanUp()
5846 if (old_space_strings_[i] == heap_->raw_unchecked_null_value()) continue; in CleanUp()
5847 ASSERT(!heap_->InNewSpace(old_space_strings_[i])); in CleanUp()
5848 old_space_strings_[last++] = old_space_strings_[i]; in CleanUp()
5850 old_space_strings_.Rewind(last); in CleanUp()
5857 old_space_strings_.Free(); in TearDown()
Dheap.h319 List<Object*> old_space_strings_; variable