Lines Matching defs:count
256 if (grouped_by_leading.count(leading_range) == 0) {
1388 void MoveRanges(ZoneList<CharacterRange>* list, int from, int to, int count) {
1391 for (int i = count - 1; i >= 0; i--) {
1395 for (int i = 0; i < count; i++) {
1401 int InsertRangeInCanonicalList(ZoneList<CharacterRange>* list, int count,
1403 // Inserts a range into list[0..count[, which must be sorted
1405 // list[0..count] for the result. Returns the number of resulting
1407 // fewer ranges, so the return value can be anything in the range 1..count+1.
1411 int end_pos = count;
1412 for (int i = count - 1; i >= 0; i--) {
1431 if (start_pos < count) {
1432 MoveRanges(list, start_pos, start_pos + 1, count - start_pos);
1435 return count + 1;
1443 return count;
1450 if (end_pos < count) {
1451 MoveRanges(list, end_pos, start_pos + 1, count - end_pos);
1454 return count - (end_pos - start_pos) + 1;