Home | History | Annotate | Download | only in cctest

Lines Matching defs:ranges

464   ZoneList<CharacterRange>* ranges = new ZoneList<CharacterRange>(2);
465 CharacterRange::AddClassEscape(c, ranges);
468 for (int j = 0; !in_class && j < ranges->length(); j++) {
469 CharacterRange& range = ranges->at(j);
606 uc16 ranges[kRangeCount][2 * kRangeSize];
608 Vector<uc16> range(ranges[i], 2 * kRangeSize);
621 uc16* range = ranges[i];
629 uc16* range = ranges[j];
1381 ZoneList<CharacterRange>* ranges =
1387 ranges->Add(CharacterRange(from, to));
1392 cons.AddInverse(ranges);
1396 is_on = ranges->at(j).Contains(i);
1402 ZoneList<CharacterRange>* ranges =
1404 ranges->Add(CharacterRange(0xFFF0, 0xFFFE));
1408 cons.AddInverse(ranges);
1564 static bool InClass(uc16 c, ZoneList<CharacterRange>* ranges) {
1565 if (ranges == NULL)
1567 for (int i = 0; i < ranges->length(); i++) {
1568 CharacterRange range = ranges->at(i);
1663 // Checks whether a character is in the set represented by a list of ranges.
1679 // Create all combinations of intersections of ranges, both singletons and