Home | History | Annotate | Download | only in src

Lines Matching defs:to_

265   CharacterRange() : from_(0), to_(0) { }
268 CharacterRange(uc16 from, uc16 to) : from_(from), to_(to) { }
281 bool Contains(uc16 i) { return from_ <= i && i <= to_; }
284 uc16 to() const { return to_; }
285 void set_to(uc16 value) { to_ = value; }
286 bool is_valid() { return from_ <= to_; }
287 bool IsEverything(uc16 max) { return from_ == 0 && to_ >= max; }
288 bool IsSingleton() { return (from_ == to_); }
332 uc16 to_;
371 Entry() : from_(0), to_(0), out_set_(NULL) { }
373 : from_(from), to_(to), out_set_(out_set) { }
375 uc16 to() { return to_; }
376 void set_to(uc16 value) { to_ = value; }
381 uc16 to_;
715 Interval() : from_(kNone), to_(kNone) { }
716 Interval(int from, int to) : from_(from), to_(to) { }
723 return Interval(Min(from_, that.from_), Max(to_, that.to_));
726 return (from_ <= value) && (value <= to_);
730 int to() { return to_; }
735 int to_;