Home | History | Annotate | Download | only in src

Lines Matching defs:from_

237 // Represents code units in the range from from_ to to_, both ends are
241 CharacterRange() : from_(0), to_(0) { }
244 CharacterRange(uc16 from, uc16 to) : from_(from), to_(to) { }
258 bool Contains(uc16 i) { return from_ <= i && i <= to_; }
259 uc16 from() const { return from_; }
260 void set_from(uc16 value) { from_ = value; }
263 bool is_valid() { return from_ <= to_; }
264 bool IsEverything(uc16 max) { return from_ == 0 && to_ >= max; }
265 bool IsSingleton() { return (from_ == to_); }
289 uc16 from_;
331 Entry() : from_(0), to_(0), out_set_(NULL) { }
333 : from_(from), to_(to), out_set_(out_set) { }
334 uc16 from() { return from_; }
342 uc16 from_;
699 Interval() : from_(kNone), to_(kNone) { }
700 Interval(int from, int to) : from_(from), to_(to) { }
702 if (that.from_ == kNone)
704 else if (from_ == kNone)
707 return Interval(Min(from_, that.from_), Max(to_, that.to_));
710 return (from_ <= value) && (value <= to_);
712 bool is_empty() { return from_ == kNone; }
713 int from() const { return from_; }
718 int from_;