Lines Matching refs:index
42 // Minimum index returned. Values smaller |kMinIndex| may be used as
59 const GCInfo& GCInfoFromIndex(GCInfoIndex index) const {
60 DCHECK_GE(index, kMinIndex);
61 DCHECK_LT(index, kMaxIndex);
63 return table_[index];
69 GCInfo& TableSlotForTesting(GCInfoIndex index) { return table_[index]; }
83 // index into this table.
86 // Current index used when requiring a new GCInfo object.
108 static const GCInfo& GCInfoFromIndex(GCInfoIndex index) {
109 return Get().GCInfoFromIndex(index);