Lines Matching defs:to
51 Interval(int from, int to) : from_(from), to_(to) {}
63 int to() const { return to_; }
73 // Represents code units in the range from from_ to to_, both ends are
80 CharacterRange(uc16 from, uc16 to) : from_(from), to_(to) {}
87 static inline CharacterRange Range(uc16 from, uc16 to) {
88 DCHECK(from <= to);
89 return CharacterRange(from, to);
97 uc16 to() const { return to_; }
110 // Convert range list to canonical form. The characters covered by the ranges
144 // characters) without having to expand the ranges.
471 // The back reference may be recursive, e.g. /(\2)(\1)/. To avoid infinite