Home | History | Annotate | Download | only in src

Lines Matching defs:to_

269   CharacterRange() : from_(0), to_(0) { }
272 CharacterRange(uc16 from, uc16 to) : from_(from), to_(to) { }
285 bool Contains(uc16 i) { return from_ <= i && i <= to_; }
288 uc16 to() const { return to_; }
289 void set_to(uc16 value) { to_ = value; }
290 bool is_valid() { return from_ <= to_; }
291 bool IsEverything(uc16 max) { return from_ == 0 && to_ >= max; }
292 bool IsSingleton() { return (from_ == to_); }
336 uc16 to_;
375 Entry() : from_(0), to_(0), out_set_(NULL) { }
377 : from_(from), to_(to), out_set_(out_set) { }
379 uc16 to() { return to_; }
380 void set_to(uc16 value) { to_ = value; }
385 uc16 to_;
720 Interval() : from_(kNone), to_(kNone) { }
721 Interval(int from, int to) : from_(from), to_(to) { }
728 return Interval(Min(from_, that.from_), Max(to_, that.to_));
731 return (from_ <= value) && (value <= to_);
735 int to() { return to_; }
740 int to_;