Home | History | Annotate | Download | only in metrics

Lines Matching refs:ranges_

99     : ranges_(num_ranges, 0),
105 DCHECK_LT(i, ranges_.size());
107 ranges_[i] = value;
112 uint32 checksum = static_cast<uint32>(ranges_.size());
114 for (size_t index = 0; index < ranges_.size(); ++index)
115 checksum = Crc32(checksum, ranges_[index]);
130 if (ranges_.size() != other->ranges_.size())
132 for (size_t index = 0; index < ranges_.size(); ++index) {
133 if (ranges_[index] != other->ranges_[index])