Home | History | Annotate | Download | only in yarr

Lines Matching refs:ranges

99     void matchCharacterClassRange(RegisterID character, JumpList& failures, JumpList& matchDest, const CharacterRange* ranges, unsigned count, unsigned* matchIndex, const UChar* matches, unsigned matchCount)
104 char lo = ranges[which].begin;
105 char hi = ranges[which].end;
107 // check if there are any ranges or matches below lo. If not, just jl to failure -
112 // generate code for all ranges before this one
114 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
126 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
141 ranges += next;