Lines Matching refs:from
52 Interval(int from, int to) : from_(from), to_(to) {}
63 int from() const { return from_; }
87 // Represents code points (with values up to 0x10FFFF) in the range from from_
98 static inline CharacterRange Range(base::uc32 from, base::uc32 to) {
99 DCHECK(0 <= from && to <= kMaxCodePoint);
100 DCHECK(static_cast<uint32_t>(from) <= static_cast<uint32_t>(to));
101 return CharacterRange(from, to);
125 base::uc32 from() const { return from_; }
129 // Whether a range list is in canonical form: Ranges ordered by from value,
145 CharacterRange(base::uc32 from, base::uc32 to) : from_(from), to_(to) {}