Home | History | Annotate | Download | only in regexp

Lines Matching refs:uc32

85   static inline CharacterRange Singleton(uc32 value) {
88 static inline CharacterRange Range(uc32 from, uc32 to) {
103 bool Contains(uc32 i) { return from_ <= i && i <= to_; }
104 uc32 from() const { return from_; }
105 void set_from(uc32 value) { from_ = value; }
106 uc32 to() const { return to_; }
107 void set_to(uc32 value) { to_ = value; }
129 CharacterRange(uc32 from, uc32 to) : from_(from), to_(to) {}
131 uc32 from_;
132 uc32 to_;