Lines Matching defs:index
853 int index = array->length();
857 DCHECK_EQ(array->length(), index + 1);
858 retaining_path_target_option_[index] = option;
4747 void VisitEphemeron(HeapObject host, int index, ObjectSlot key,
6949 size_t Heap::ObjectCountAtLastGC(size_t index) {
6950 if (live_object_stats_ == nullptr || index >= ObjectStats::OBJECT_STATS_COUNT)
6952 return live_object_stats_->object_count_last_gc(index);
6955 size_t Heap::ObjectSizeAtLastGC(size_t index) {
6956 if (live_object_stats_ == nullptr || index >= ObjectStats::OBJECT_STATS_COUNT)
6958 return live_object_stats_->object_size_last_gc(index);
6961 bool Heap::GetObjectTypeName(size_t index, const char** object_type,
6963 if (index >= ObjectStats::OBJECT_STATS_COUNT) return false;
6965 switch (static_cast<int>(index)) {